diff options
author | Jiri Kosina <jkosina@suse.cz> | 2011-11-13 14:55:35 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-11-13 14:55:53 -0500 |
commit | 2290c0d06d82faee87b1ab2d9d4f7bf81ef64379 (patch) | |
tree | e075e4d5534193f28e6059904f61e5ca03958d3c /arch/powerpc | |
parent | 4da669a2e3e5bc70b30a0465f3641528681b5f77 (diff) | |
parent | 52e4c2a05256cb83cda12f3c2137ab1533344edb (diff) |
Merge branch 'master' into for-next
Sync with Linus tree to have 157550ff ("mtd: add GPMI-NAND driver
in the config and Makefile") as I have patch depending on that one.
Diffstat (limited to 'arch/powerpc')
385 files changed, 10114 insertions, 2215 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 6926b61acfea..b177caa56d95 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -323,7 +323,7 @@ config SWIOTLB | |||
323 | 323 | ||
324 | config HOTPLUG_CPU | 324 | config HOTPLUG_CPU |
325 | bool "Support for enabling/disabling CPUs" | 325 | bool "Support for enabling/disabling CPUs" |
326 | depends on SMP && HOTPLUG && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC) | 326 | depends on SMP && HOTPLUG && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC || PPC_POWERNV) |
327 | ---help--- | 327 | ---help--- |
328 | Say Y here to be able to disable and re-enable individual | 328 | Say Y here to be able to disable and re-enable individual |
329 | CPUs at runtime on SMP machines. | 329 | CPUs at runtime on SMP machines. |
@@ -345,7 +345,7 @@ config ARCH_ENABLE_MEMORY_HOTREMOVE | |||
345 | 345 | ||
346 | config KEXEC | 346 | config KEXEC |
347 | bool "kexec system call (EXPERIMENTAL)" | 347 | bool "kexec system call (EXPERIMENTAL)" |
348 | depends on (PPC_BOOK3S || FSL_BOOKE) && EXPERIMENTAL | 348 | depends on (PPC_BOOK3S || FSL_BOOKE || (44x && !SMP && !47x)) && EXPERIMENTAL |
349 | help | 349 | help |
350 | kexec is a system call that implements the ability to shutdown your | 350 | kexec is a system call that implements the ability to shutdown your |
351 | current kernel, and to start another kernel. It is like a reboot | 351 | current kernel, and to start another kernel. It is like a reboot |
@@ -379,10 +379,6 @@ config PHYP_DUMP | |||
379 | 379 | ||
380 | If unsure, say "N" | 380 | If unsure, say "N" |
381 | 381 | ||
382 | config PPCBUG_NVRAM | ||
383 | bool "Enable reading PPCBUG NVRAM during boot" if PPLUS || LOPEC | ||
384 | default y if PPC_PREP | ||
385 | |||
386 | config IRQ_ALL_CPUS | 382 | config IRQ_ALL_CPUS |
387 | bool "Distribute interrupts on all CPUs by default" | 383 | bool "Distribute interrupts on all CPUs by default" |
388 | depends on SMP && !MV64360 | 384 | depends on SMP && !MV64360 |
@@ -429,8 +425,7 @@ config ARCH_POPULATES_NODE_MAP | |||
429 | def_bool y | 425 | def_bool y |
430 | 426 | ||
431 | config SYS_SUPPORTS_HUGETLBFS | 427 | config SYS_SUPPORTS_HUGETLBFS |
432 | def_bool y | 428 | bool |
433 | depends on PPC_BOOK3S_64 | ||
434 | 429 | ||
435 | source "mm/Kconfig" | 430 | source "mm/Kconfig" |
436 | 431 | ||
@@ -656,6 +651,8 @@ config SBUS | |||
656 | 651 | ||
657 | config FSL_SOC | 652 | config FSL_SOC |
658 | bool | 653 | bool |
654 | select HAVE_CAN_FLEXCAN if NET && CAN | ||
655 | select PPC_CLOCK if CAN_FLEXCAN | ||
659 | 656 | ||
660 | config FSL_PCI | 657 | config FSL_PCI |
661 | bool | 658 | bool |
@@ -744,24 +741,6 @@ config 8260_PCI9 | |||
744 | depends on PCI_8260 && !8272 | 741 | depends on PCI_8260 && !8272 |
745 | default y | 742 | default y |
746 | 743 | ||
747 | choice | ||
748 | prompt "IDMA channel for PCI 9 workaround" | ||
749 | depends on 8260_PCI9 | ||
750 | |||
751 | config 8260_PCI9_IDMA1 | ||
752 | bool "IDMA1" | ||
753 | |||
754 | config 8260_PCI9_IDMA2 | ||
755 | bool "IDMA2" | ||
756 | |||
757 | config 8260_PCI9_IDMA3 | ||
758 | bool "IDMA3" | ||
759 | |||
760 | config 8260_PCI9_IDMA4 | ||
761 | bool "IDMA4" | ||
762 | |||
763 | endchoice | ||
764 | |||
765 | source "drivers/pci/pcie/Kconfig" | 744 | source "drivers/pci/pcie/Kconfig" |
766 | 745 | ||
767 | source "drivers/pci/Kconfig" | 746 | source "drivers/pci/Kconfig" |
diff --git a/arch/powerpc/Kconfig.debug b/arch/powerpc/Kconfig.debug index 067cb8480747..1b8a9c905cf7 100644 --- a/arch/powerpc/Kconfig.debug +++ b/arch/powerpc/Kconfig.debug | |||
@@ -141,9 +141,6 @@ config BOOTX_TEXT | |||
141 | 141 | ||
142 | config PPC_EARLY_DEBUG | 142 | config PPC_EARLY_DEBUG |
143 | bool "Early debugging (dangerous)" | 143 | bool "Early debugging (dangerous)" |
144 | # PPC_EARLY_DEBUG on 440 leaves AS=1 mappings above the TLB high water | ||
145 | # mark, which doesn't work with current 440 KVM. | ||
146 | depends on !KVM | ||
147 | help | 144 | help |
148 | Say Y to enable some early debugging facilities that may be available | 145 | Say Y to enable some early debugging facilities that may be available |
149 | for your processor/board combination. Those facilities are hacks | 146 | for your processor/board combination. Those facilities are hacks |
@@ -222,7 +219,9 @@ config PPC_EARLY_DEBUG_BEAT | |||
222 | 219 | ||
223 | config PPC_EARLY_DEBUG_44x | 220 | config PPC_EARLY_DEBUG_44x |
224 | bool "Early serial debugging for IBM/AMCC 44x CPUs" | 221 | bool "Early serial debugging for IBM/AMCC 44x CPUs" |
225 | depends on 44x | 222 | # PPC_EARLY_DEBUG on 440 leaves AS=1 mappings above the TLB high water |
223 | # mark, which doesn't work with current 440 KVM. | ||
224 | depends on 44x && !KVM | ||
226 | help | 225 | help |
227 | Select this to enable early debugging for IBM 44x chips via the | 226 | Select this to enable early debugging for IBM 44x chips via the |
228 | inbuilt serial port. If you enable this, ensure you set | 227 | inbuilt serial port. If you enable this, ensure you set |
@@ -258,8 +257,35 @@ config PPC_EARLY_DEBUG_WSP | |||
258 | depends on PPC_WSP | 257 | depends on PPC_WSP |
259 | select PPC_UDBG_16550 | 258 | select PPC_UDBG_16550 |
260 | 259 | ||
260 | config PPC_EARLY_DEBUG_PS3GELIC | ||
261 | bool "Early debugging through the PS3 Ethernet port" | ||
262 | depends on PPC_PS3 | ||
263 | select PS3GELIC_UDBG | ||
264 | help | ||
265 | Select this to enable early debugging for the PlayStation3 via | ||
266 | UDP broadcasts sent out through the Ethernet port. | ||
267 | |||
268 | config PPC_EARLY_DEBUG_OPAL_RAW | ||
269 | bool "OPAL raw console" | ||
270 | depends on HVC_OPAL | ||
271 | help | ||
272 | Select this to enable early debugging for the PowerNV platform | ||
273 | using a "raw" console | ||
274 | |||
275 | config PPC_EARLY_DEBUG_OPAL_HVSI | ||
276 | bool "OPAL hvsi console" | ||
277 | depends on HVC_OPAL | ||
278 | help | ||
279 | Select this to enable early debugging for the PowerNV platform | ||
280 | using an "hvsi" console | ||
281 | |||
261 | endchoice | 282 | endchoice |
262 | 283 | ||
284 | config PPC_EARLY_DEBUG_OPAL | ||
285 | def_bool y | ||
286 | depends on PPC_EARLY_DEBUG_OPAL_RAW || PPC_EARLY_DEBUG_OPAL_HVSI | ||
287 | |||
288 | |||
263 | config PPC_EARLY_DEBUG_HVSI_VTERMNO | 289 | config PPC_EARLY_DEBUG_HVSI_VTERMNO |
264 | hex "vterm number to use with early debug HVSI" | 290 | hex "vterm number to use with early debug HVSI" |
265 | depends on PPC_EARLY_DEBUG_LPAR_HVSI | 291 | depends on PPC_EARLY_DEBUG_LPAR_HVSI |
@@ -268,6 +294,18 @@ config PPC_EARLY_DEBUG_HVSI_VTERMNO | |||
268 | You probably want 0x30000000 for your first serial port and | 294 | You probably want 0x30000000 for your first serial port and |
269 | 0x30000001 for your second one | 295 | 0x30000001 for your second one |
270 | 296 | ||
297 | config PPC_EARLY_DEBUG_OPAL_VTERMNO | ||
298 | hex "vterm number to use with OPAL early debug" | ||
299 | depends on PPC_EARLY_DEBUG_OPAL | ||
300 | default "0" | ||
301 | help | ||
302 | This correspond to which /dev/hvcN you want to use for early | ||
303 | debug. | ||
304 | |||
305 | On OPAL v1 (takeover) this should always be 0 | ||
306 | On OPAL v2, this will be 0 for network console and 1 or 2 for | ||
307 | the machine built-in serial ports. | ||
308 | |||
271 | config PPC_EARLY_DEBUG_44x_PHYSLOW | 309 | config PPC_EARLY_DEBUG_44x_PHYSLOW |
272 | hex "Low 32 bits of early debug UART physical address" | 310 | hex "Low 32 bits of early debug UART physical address" |
273 | depends on PPC_EARLY_DEBUG_44x | 311 | depends on PPC_EARLY_DEBUG_44x |
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index c26200b40a47..72ee8c1fba48 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
@@ -58,7 +58,7 @@ $(addprefix $(obj)/,$(zlib) cuboot-c2k.o gunzip_util.o main.o prpmc2800.o): \ | |||
58 | libfdt := fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c | 58 | libfdt := fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c |
59 | libfdtheader := fdt.h libfdt.h libfdt_internal.h | 59 | libfdtheader := fdt.h libfdt.h libfdt_internal.h |
60 | 60 | ||
61 | $(addprefix $(obj)/,$(libfdt) libfdt-wrapper.o simpleboot.o): \ | 61 | $(addprefix $(obj)/,$(libfdt) libfdt-wrapper.o simpleboot.o epapr.o): \ |
62 | $(addprefix $(obj)/,$(libfdtheader)) | 62 | $(addprefix $(obj)/,$(libfdtheader)) |
63 | 63 | ||
64 | src-wlib := string.S crt0.S crtsavres.S stdio.c main.c \ | 64 | src-wlib := string.S crt0.S crtsavres.S stdio.c main.c \ |
@@ -171,6 +171,7 @@ quiet_cmd_wrap = WRAP $@ | |||
171 | $(if $3, -s $3)$(if $4, -d $4)$(if $5, -i $5) vmlinux | 171 | $(if $3, -s $3)$(if $4, -d $4)$(if $5, -i $5) vmlinux |
172 | 172 | ||
173 | image-$(CONFIG_PPC_PSERIES) += zImage.pseries | 173 | image-$(CONFIG_PPC_PSERIES) += zImage.pseries |
174 | image-$(CONFIG_PPC_POWERNV) += zImage.pseries | ||
174 | image-$(CONFIG_PPC_MAPLE) += zImage.maple | 175 | image-$(CONFIG_PPC_MAPLE) += zImage.maple |
175 | image-$(CONFIG_PPC_IBM_CELL_BLADE) += zImage.pseries | 176 | image-$(CONFIG_PPC_IBM_CELL_BLADE) += zImage.pseries |
176 | image-$(CONFIG_PPC_PS3) += dtbImage.ps3 | 177 | image-$(CONFIG_PPC_PS3) += dtbImage.ps3 |
diff --git a/arch/powerpc/boot/dts/charon.dts b/arch/powerpc/boot/dts/charon.dts new file mode 100644 index 000000000000..0e00e508eaa6 --- /dev/null +++ b/arch/powerpc/boot/dts/charon.dts | |||
@@ -0,0 +1,236 @@ | |||
1 | /* | ||
2 | * charon board Device Tree Source | ||
3 | * | ||
4 | * Copyright (C) 2007 Semihalf | ||
5 | * Marian Balakowicz <m8@semihalf.com> | ||
6 | * | ||
7 | * Copyright (C) 2010 DENX Software Engineering GmbH | ||
8 | * Heiko Schocher <hs@denx.de> | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify it | ||
11 | * under the terms of the GNU General Public License as published by the | ||
12 | * Free Software Foundation; either version 2 of the License, or (at your | ||
13 | * option) any later version. | ||
14 | */ | ||
15 | |||
16 | /dts-v1/; | ||
17 | |||
18 | / { | ||
19 | model = "anon,charon"; | ||
20 | compatible = "anon,charon"; | ||
21 | #address-cells = <1>; | ||
22 | #size-cells = <1>; | ||
23 | interrupt-parent = <&mpc5200_pic>; | ||
24 | |||
25 | cpus { | ||
26 | #address-cells = <1>; | ||
27 | #size-cells = <0>; | ||
28 | |||
29 | PowerPC,5200@0 { | ||
30 | device_type = "cpu"; | ||
31 | reg = <0>; | ||
32 | d-cache-line-size = <32>; | ||
33 | i-cache-line-size = <32>; | ||
34 | d-cache-size = <0x4000>; // L1, 16K | ||
35 | i-cache-size = <0x4000>; // L1, 16K | ||
36 | timebase-frequency = <0>; // from bootloader | ||
37 | bus-frequency = <0>; // from bootloader | ||
38 | clock-frequency = <0>; // from bootloader | ||
39 | }; | ||
40 | }; | ||
41 | |||
42 | memory { | ||
43 | device_type = "memory"; | ||
44 | reg = <0x00000000 0x08000000>; // 128MB | ||
45 | }; | ||
46 | |||
47 | soc5200@f0000000 { | ||
48 | #address-cells = <1>; | ||
49 | #size-cells = <1>; | ||
50 | compatible = "fsl,mpc5200-immr"; | ||
51 | ranges = <0 0xf0000000 0x0000c000>; | ||
52 | reg = <0xf0000000 0x00000100>; | ||
53 | bus-frequency = <0>; // from bootloader | ||
54 | system-frequency = <0>; // from bootloader | ||
55 | |||
56 | cdm@200 { | ||
57 | compatible = "fsl,mpc5200-cdm"; | ||
58 | reg = <0x200 0x38>; | ||
59 | }; | ||
60 | |||
61 | mpc5200_pic: interrupt-controller@500 { | ||
62 | // 5200 interrupts are encoded into two levels; | ||
63 | interrupt-controller; | ||
64 | #interrupt-cells = <3>; | ||
65 | compatible = "fsl,mpc5200-pic"; | ||
66 | reg = <0x500 0x80>; | ||
67 | }; | ||
68 | |||
69 | timer@600 { // General Purpose Timer | ||
70 | compatible = "fsl,mpc5200-gpt"; | ||
71 | reg = <0x600 0x10>; | ||
72 | interrupts = <1 9 0>; | ||
73 | fsl,has-wdt; | ||
74 | }; | ||
75 | |||
76 | can@900 { | ||
77 | compatible = "fsl,mpc5200-mscan"; | ||
78 | interrupts = <2 17 0>; | ||
79 | reg = <0x900 0x80>; | ||
80 | }; | ||
81 | |||
82 | can@980 { | ||
83 | compatible = "fsl,mpc5200-mscan"; | ||
84 | interrupts = <2 18 0>; | ||
85 | reg = <0x980 0x80>; | ||
86 | }; | ||
87 | |||
88 | gpio_simple: gpio@b00 { | ||
89 | compatible = "fsl,mpc5200-gpio"; | ||
90 | reg = <0xb00 0x40>; | ||
91 | interrupts = <1 7 0>; | ||
92 | gpio-controller; | ||
93 | #gpio-cells = <2>; | ||
94 | }; | ||
95 | |||
96 | usb@1000 { | ||
97 | compatible = "fsl,mpc5200-ohci","ohci-be"; | ||
98 | reg = <0x1000 0xff>; | ||
99 | interrupts = <2 6 0>; | ||
100 | }; | ||
101 | |||
102 | dma-controller@1200 { | ||
103 | device_type = "dma-controller"; | ||
104 | compatible = "fsl,mpc5200-bestcomm"; | ||
105 | reg = <0x1200 0x80>; | ||
106 | interrupts = <3 0 0 3 1 0 3 2 0 3 3 0 | ||
107 | 3 4 0 3 5 0 3 6 0 3 7 0 | ||
108 | 3 8 0 3 9 0 3 10 0 3 11 0 | ||
109 | 3 12 0 3 13 0 3 14 0 3 15 0>; | ||
110 | }; | ||
111 | |||
112 | xlb@1f00 { | ||
113 | compatible = "fsl,mpc5200-xlb"; | ||
114 | reg = <0x1f00 0x100>; | ||
115 | }; | ||
116 | |||
117 | serial@2000 { // PSC1 | ||
118 | compatible = "fsl,mpc5200-psc-uart"; | ||
119 | reg = <0x2000 0x100>; | ||
120 | interrupts = <2 1 0>; | ||
121 | }; | ||
122 | |||
123 | serial@2400 { // PSC3 | ||
124 | compatible = "fsl,mpc5200-psc-uart"; | ||
125 | reg = <0x2400 0x100>; | ||
126 | interrupts = <2 3 0>; | ||
127 | }; | ||
128 | |||
129 | ethernet@3000 { | ||
130 | compatible = "fsl,mpc5200-fec"; | ||
131 | reg = <0x3000 0x400>; | ||
132 | local-mac-address = [ 00 00 00 00 00 00 ]; | ||
133 | interrupts = <2 5 0>; | ||
134 | fixed-link = <1 1 100 0 0>; | ||
135 | }; | ||
136 | |||
137 | mdio@3000 { | ||
138 | #address-cells = <1>; | ||
139 | #size-cells = <0>; | ||
140 | compatible = "fsl,mpc5200-mdio"; | ||
141 | reg = <0x3000 0x400>; // fec range, since we need to setup fec interrupts | ||
142 | interrupts = <2 5 0>; // these are for "mii command finished", not link changes & co. | ||
143 | }; | ||
144 | |||
145 | ata@3a00 { | ||
146 | compatible = "fsl,mpc5200-ata"; | ||
147 | reg = <0x3a00 0x100>; | ||
148 | interrupts = <2 7 0>; | ||
149 | }; | ||
150 | |||
151 | i2c@3d00 { | ||
152 | #address-cells = <1>; | ||
153 | #size-cells = <0>; | ||
154 | compatible = "fsl,mpc5200-i2c","fsl-i2c"; | ||
155 | reg = <0x3d00 0x40>; | ||
156 | interrupts = <2 15 0>; | ||
157 | }; | ||
158 | |||
159 | |||
160 | i2c@3d40 { | ||
161 | #address-cells = <1>; | ||
162 | #size-cells = <0>; | ||
163 | compatible = "fsl,mpc5200-i2c","fsl-i2c"; | ||
164 | reg = <0x3d40 0x40>; | ||
165 | interrupts = <2 16 0>; | ||
166 | |||
167 | dtt@28 { | ||
168 | compatible = "national,lm80"; | ||
169 | reg = <0x28>; | ||
170 | }; | ||
171 | |||
172 | rtc@68 { | ||
173 | compatible = "dallas,ds1374"; | ||
174 | reg = <0x68>; | ||
175 | }; | ||
176 | }; | ||
177 | |||
178 | sram@8000 { | ||
179 | compatible = "fsl,mpc5200-sram"; | ||
180 | reg = <0x8000 0x4000>; | ||
181 | }; | ||
182 | }; | ||
183 | |||
184 | localbus { | ||
185 | compatible = "fsl,mpc5200-lpb","simple-bus"; | ||
186 | #address-cells = <2>; | ||
187 | #size-cells = <1>; | ||
188 | ranges = < 0 0 0xfc000000 0x02000000 | ||
189 | 1 0 0xe0000000 0x04000000 // CS1 range, SM501 | ||
190 | 3 0 0xe8000000 0x00080000>; | ||
191 | |||
192 | flash@0,0 { | ||
193 | compatible = "cfi-flash"; | ||
194 | reg = <0 0 0x02000000>; | ||
195 | bank-width = <4>; | ||
196 | device-width = <2>; | ||
197 | #size-cells = <1>; | ||
198 | #address-cells = <1>; | ||
199 | }; | ||
200 | |||
201 | display@1,0 { | ||
202 | compatible = "smi,sm501"; | ||
203 | reg = <1 0x00000000 0x00800000 | ||
204 | 1 0x03e00000 0x00200000>; | ||
205 | mode = "640x480-32@60"; | ||
206 | interrupts = <1 1 3>; | ||
207 | little-endian; | ||
208 | }; | ||
209 | |||
210 | mram0@3,0 { | ||
211 | compatible = "mtd-ram"; | ||
212 | reg = <3 0x00000 0x80000>; | ||
213 | bank-width = <1>; | ||
214 | }; | ||
215 | }; | ||
216 | |||
217 | pci@f0000d00 { | ||
218 | #interrupt-cells = <1>; | ||
219 | #size-cells = <2>; | ||
220 | #address-cells = <3>; | ||
221 | device_type = "pci"; | ||
222 | compatible = "fsl,mpc5200-pci"; | ||
223 | reg = <0xf0000d00 0x100>; | ||
224 | interrupt-map-mask = <0xf800 0 0 7>; | ||
225 | interrupt-map = <0xc000 0 0 1 &mpc5200_pic 0 0 3 | ||
226 | 0xc000 0 0 2 &mpc5200_pic 0 0 3 | ||
227 | 0xc000 0 0 3 &mpc5200_pic 0 0 3 | ||
228 | 0xc000 0 0 4 &mpc5200_pic 0 0 3>; | ||
229 | clock-frequency = <0>; // From boot loader | ||
230 | interrupts = <2 8 0 2 9 0 2 10 0>; | ||
231 | bus-range = <0 0>; | ||
232 | ranges = <0x42000000 0 0x80000000 0x80000000 0 0x10000000 | ||
233 | 0x02000000 0 0x90000000 0x90000000 0 0x10000000 | ||
234 | 0x01000000 0 0x00000000 0xa0000000 0 0x01000000>; | ||
235 | }; | ||
236 | }; | ||
diff --git a/arch/powerpc/boot/dts/digsy_mtc.dts b/arch/powerpc/boot/dts/digsy_mtc.dts index 27bd267d631c..a7511f2d844d 100644 --- a/arch/powerpc/boot/dts/digsy_mtc.dts +++ b/arch/powerpc/boot/dts/digsy_mtc.dts | |||
@@ -23,19 +23,26 @@ | |||
23 | 23 | ||
24 | soc5200@f0000000 { | 24 | soc5200@f0000000 { |
25 | timer@600 { // General Purpose Timer | 25 | timer@600 { // General Purpose Timer |
26 | #gpio-cells = <2>; | ||
26 | fsl,has-wdt; | 27 | fsl,has-wdt; |
28 | gpio-controller; | ||
27 | }; | 29 | }; |
28 | 30 | ||
29 | rtc@800 { | 31 | timer@610 { |
30 | status = "disabled"; | 32 | #gpio-cells = <2>; |
33 | gpio-controller; | ||
31 | }; | 34 | }; |
32 | 35 | ||
33 | can@900 { | 36 | rtc@800 { |
34 | status = "disabled"; | 37 | status = "disabled"; |
35 | }; | 38 | }; |
36 | 39 | ||
37 | can@980 { | 40 | spi@f00 { |
38 | status = "disabled"; | 41 | msp430@0 { |
42 | compatible = "spidev"; | ||
43 | spi-max-frequency = <32000>; | ||
44 | reg = <0>; | ||
45 | }; | ||
39 | }; | 46 | }; |
40 | 47 | ||
41 | psc@2000 { // PSC1 | 48 | psc@2000 { // PSC1 |
@@ -73,11 +80,16 @@ | |||
73 | }; | 80 | }; |
74 | 81 | ||
75 | i2c@3d00 { | 82 | i2c@3d00 { |
76 | rtc@50 { | 83 | eeprom@50 { |
77 | compatible = "at,24c08"; | 84 | compatible = "at,24c08"; |
78 | reg = <0x50>; | 85 | reg = <0x50>; |
79 | }; | 86 | }; |
80 | 87 | ||
88 | rtc@56 { | ||
89 | compatible = "mc,rv3029c2"; | ||
90 | reg = <0x56>; | ||
91 | }; | ||
92 | |||
81 | rtc@68 { | 93 | rtc@68 { |
82 | compatible = "dallas,ds1339"; | 94 | compatible = "dallas,ds1339"; |
83 | reg = <0x68>; | 95 | reg = <0x68>; |
@@ -90,11 +102,22 @@ | |||
90 | }; | 102 | }; |
91 | 103 | ||
92 | pci@f0000d00 { | 104 | pci@f0000d00 { |
93 | status = "disabled"; | 105 | interrupt-map-mask = <0xf800 0 0 7>; |
106 | interrupt-map = <0xc000 0 0 1 &mpc5200_pic 0 0 3 | ||
107 | 0xc000 0 0 2 &mpc5200_pic 0 0 3 | ||
108 | 0xc000 0 0 3 &mpc5200_pic 0 0 3 | ||
109 | 0xc000 0 0 4 &mpc5200_pic 0 0 3>; | ||
110 | clock-frequency = <0>; // From boot loader | ||
111 | interrupts = <2 8 0 2 9 0 2 10 0>; | ||
112 | bus-range = <0 0>; | ||
113 | ranges = <0x42000000 0 0x80000000 0x80000000 0 0x10000000 | ||
114 | 0x02000000 0 0x90000000 0x90000000 0 0x10000000 | ||
115 | 0x01000000 0 0x00000000 0xa0000000 0 0x01000000>; | ||
94 | }; | 116 | }; |
95 | 117 | ||
96 | localbus { | 118 | localbus { |
97 | ranges = <0 0 0xff000000 0x1000000>; | 119 | ranges = <0 0 0xff000000 0x1000000 |
120 | 4 0 0x60000000 0x0001000>; | ||
98 | 121 | ||
99 | // 16-bit flash device at LocalPlus Bus CS0 | 122 | // 16-bit flash device at LocalPlus Bus CS0 |
100 | flash@0,0 { | 123 | flash@0,0 { |
@@ -122,5 +145,25 @@ | |||
122 | reg = <0x00f00000 0x100000>; | 145 | reg = <0x00f00000 0x100000>; |
123 | }; | 146 | }; |
124 | }; | 147 | }; |
148 | |||
149 | can@4,0 { | ||
150 | compatible = "nxp,sja1000"; | ||
151 | reg = <4 0x000 0x80>; | ||
152 | nxp,external-clock-frequency = <24000000>; | ||
153 | interrupts = <1 2 3>; // Level-low | ||
154 | }; | ||
155 | |||
156 | can@4,100 { | ||
157 | compatible = "nxp,sja1000"; | ||
158 | reg = <4 0x100 0x80>; | ||
159 | nxp,external-clock-frequency = <24000000>; | ||
160 | interrupts = <1 2 3>; // Level-low | ||
161 | }; | ||
162 | |||
163 | serial@4,200 { | ||
164 | compatible = "nxp,sc28l92"; | ||
165 | reg = <4 0x200 0x10>; | ||
166 | interrupts = <1 3 3>; | ||
167 | }; | ||
125 | }; | 168 | }; |
126 | }; | 169 | }; |
diff --git a/arch/powerpc/boot/dts/gef_ppc9a.dts b/arch/powerpc/boot/dts/gef_ppc9a.dts index 83f4b79dff85..2266bbb303d0 100644 --- a/arch/powerpc/boot/dts/gef_ppc9a.dts +++ b/arch/powerpc/boot/dts/gef_ppc9a.dts | |||
@@ -269,14 +269,16 @@ | |||
269 | enet0: ethernet@24000 { | 269 | enet0: ethernet@24000 { |
270 | #address-cells = <1>; | 270 | #address-cells = <1>; |
271 | #size-cells = <1>; | 271 | #size-cells = <1>; |
272 | cell-index = <0>; | ||
272 | device_type = "network"; | 273 | device_type = "network"; |
273 | model = "eTSEC"; | 274 | model = "TSEC"; |
274 | compatible = "gianfar"; | 275 | compatible = "gianfar"; |
275 | reg = <0x24000 0x1000>; | 276 | reg = <0x24000 0x1000>; |
276 | ranges = <0x0 0x24000 0x1000>; | 277 | ranges = <0x0 0x24000 0x1000>; |
277 | local-mac-address = [ 00 00 00 00 00 00 ]; | 278 | local-mac-address = [ 00 00 00 00 00 00 ]; |
278 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; | 279 | interrupts = <29 2 30 2 34 2>; |
279 | interrupt-parent = <&mpic>; | 280 | interrupt-parent = <&mpic>; |
281 | tbi-handle = <&tbi0>; | ||
280 | phy-handle = <&phy0>; | 282 | phy-handle = <&phy0>; |
281 | phy-connection-type = "gmii"; | 283 | phy-connection-type = "gmii"; |
282 | 284 | ||
@@ -290,25 +292,48 @@ | |||
290 | interrupt-parent = <&gef_pic>; | 292 | interrupt-parent = <&gef_pic>; |
291 | interrupts = <0x9 0x4>; | 293 | interrupts = <0x9 0x4>; |
292 | reg = <1>; | 294 | reg = <1>; |
295 | device_type = "ethernet-phy"; | ||
293 | }; | 296 | }; |
294 | phy2: ethernet-phy@2 { | 297 | phy2: ethernet-phy@2 { |
295 | interrupt-parent = <&gef_pic>; | 298 | interrupt-parent = <&gef_pic>; |
296 | interrupts = <0x8 0x4>; | 299 | interrupts = <0x8 0x4>; |
297 | reg = <3>; | 300 | reg = <3>; |
301 | device_type = "ethernet-phy"; | ||
302 | }; | ||
303 | tbi0: tbi-phy@11 { | ||
304 | reg = <0x11>; | ||
305 | device_type = "tbi-phy"; | ||
298 | }; | 306 | }; |
299 | }; | 307 | }; |
300 | }; | 308 | }; |
301 | 309 | ||
302 | enet1: ethernet@26000 { | 310 | enet1: ethernet@26000 { |
311 | #address-cells = <1>; | ||
312 | #size-cells = <1>; | ||
313 | cell-index = <2>; | ||
303 | device_type = "network"; | 314 | device_type = "network"; |
304 | model = "eTSEC"; | 315 | model = "TSEC"; |
305 | compatible = "gianfar"; | 316 | compatible = "gianfar"; |
306 | reg = <0x26000 0x1000>; | 317 | reg = <0x26000 0x1000>; |
318 | ranges = <0x0 0x26000 0x1000>; | ||
307 | local-mac-address = [ 00 00 00 00 00 00 ]; | 319 | local-mac-address = [ 00 00 00 00 00 00 ]; |
308 | interrupts = <0x1f 0x2 0x20 0x2 0x21 0x2>; | 320 | interrupts = <31 2 32 2 33 2>; |
309 | interrupt-parent = <&mpic>; | 321 | interrupt-parent = <&mpic>; |
322 | tbi-handle = <&tbi2>; | ||
310 | phy-handle = <&phy2>; | 323 | phy-handle = <&phy2>; |
311 | phy-connection-type = "gmii"; | 324 | phy-connection-type = "gmii"; |
325 | |||
326 | mdio@520 { | ||
327 | #address-cells = <1>; | ||
328 | #size-cells = <0>; | ||
329 | compatible = "fsl,gianfar-tbi"; | ||
330 | reg = <0x520 0x20>; | ||
331 | |||
332 | tbi2: tbi-phy@11 { | ||
333 | reg = <0x11>; | ||
334 | device_type = "tbi-phy"; | ||
335 | }; | ||
336 | }; | ||
312 | }; | 337 | }; |
313 | 338 | ||
314 | serial0: serial@4500 { | 339 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/gef_sbc310.dts b/arch/powerpc/boot/dts/gef_sbc310.dts index fc3a331dd392..429e87d9acef 100644 --- a/arch/powerpc/boot/dts/gef_sbc310.dts +++ b/arch/powerpc/boot/dts/gef_sbc310.dts | |||
@@ -267,14 +267,16 @@ | |||
267 | enet0: ethernet@24000 { | 267 | enet0: ethernet@24000 { |
268 | #address-cells = <1>; | 268 | #address-cells = <1>; |
269 | #size-cells = <1>; | 269 | #size-cells = <1>; |
270 | cell-index = <0>; | ||
270 | device_type = "network"; | 271 | device_type = "network"; |
271 | model = "eTSEC"; | 272 | model = "TSEC"; |
272 | compatible = "gianfar"; | 273 | compatible = "gianfar"; |
273 | reg = <0x24000 0x1000>; | 274 | reg = <0x24000 0x1000>; |
274 | ranges = <0x0 0x24000 0x1000>; | 275 | ranges = <0x0 0x24000 0x1000>; |
275 | local-mac-address = [ 00 00 00 00 00 00 ]; | 276 | local-mac-address = [ 00 00 00 00 00 00 ]; |
276 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; | 277 | interrupts = <29 2 30 2 34 2>; |
277 | interrupt-parent = <&mpic>; | 278 | interrupt-parent = <&mpic>; |
279 | tbi-handle = <&tbi0>; | ||
278 | phy-handle = <&phy0>; | 280 | phy-handle = <&phy0>; |
279 | phy-connection-type = "gmii"; | 281 | phy-connection-type = "gmii"; |
280 | 282 | ||
@@ -288,25 +290,48 @@ | |||
288 | interrupt-parent = <&gef_pic>; | 290 | interrupt-parent = <&gef_pic>; |
289 | interrupts = <0x9 0x4>; | 291 | interrupts = <0x9 0x4>; |
290 | reg = <1>; | 292 | reg = <1>; |
293 | device_type = "ethernet-phy"; | ||
291 | }; | 294 | }; |
292 | phy2: ethernet-phy@2 { | 295 | phy2: ethernet-phy@2 { |
293 | interrupt-parent = <&gef_pic>; | 296 | interrupt-parent = <&gef_pic>; |
294 | interrupts = <0x8 0x4>; | 297 | interrupts = <0x8 0x4>; |
295 | reg = <3>; | 298 | reg = <3>; |
299 | device_type = "ethernet-phy"; | ||
300 | }; | ||
301 | tbi0: tbi-phy@11 { | ||
302 | reg = <0x11>; | ||
303 | device_type = "tbi-phy"; | ||
296 | }; | 304 | }; |
297 | }; | 305 | }; |
298 | }; | 306 | }; |
299 | 307 | ||
300 | enet1: ethernet@26000 { | 308 | enet1: ethernet@26000 { |
309 | #address-cells = <1>; | ||
310 | #size-cells = <1>; | ||
311 | cell-index = <2>; | ||
301 | device_type = "network"; | 312 | device_type = "network"; |
302 | model = "eTSEC"; | 313 | model = "TSEC"; |
303 | compatible = "gianfar"; | 314 | compatible = "gianfar"; |
304 | reg = <0x26000 0x1000>; | 315 | reg = <0x26000 0x1000>; |
316 | ranges = <0x0 0x26000 0x1000>; | ||
305 | local-mac-address = [ 00 00 00 00 00 00 ]; | 317 | local-mac-address = [ 00 00 00 00 00 00 ]; |
306 | interrupts = <0x1f 0x2 0x20 0x2 0x21 0x2>; | 318 | interrupts = <31 2 32 2 33 2>; |
307 | interrupt-parent = <&mpic>; | 319 | interrupt-parent = <&mpic>; |
320 | tbi-handle = <&tbi2>; | ||
308 | phy-handle = <&phy2>; | 321 | phy-handle = <&phy2>; |
309 | phy-connection-type = "gmii"; | 322 | phy-connection-type = "gmii"; |
323 | |||
324 | mdio@520 { | ||
325 | #address-cells = <1>; | ||
326 | #size-cells = <0>; | ||
327 | compatible = "fsl,gianfar-tbi"; | ||
328 | reg = <0x520 0x20>; | ||
329 | |||
330 | tbi2: tbi-phy@11 { | ||
331 | reg = <0x11>; | ||
332 | device_type = "tbi-phy"; | ||
333 | }; | ||
334 | }; | ||
310 | }; | 335 | }; |
311 | 336 | ||
312 | serial0: serial@4500 { | 337 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/gef_sbc610.dts b/arch/powerpc/boot/dts/gef_sbc610.dts index c0671cc98125..d81201ac2cad 100644 --- a/arch/powerpc/boot/dts/gef_sbc610.dts +++ b/arch/powerpc/boot/dts/gef_sbc610.dts | |||
@@ -267,14 +267,16 @@ | |||
267 | enet0: ethernet@24000 { | 267 | enet0: ethernet@24000 { |
268 | #address-cells = <1>; | 268 | #address-cells = <1>; |
269 | #size-cells = <1>; | 269 | #size-cells = <1>; |
270 | cell-index = <0>; | ||
270 | device_type = "network"; | 271 | device_type = "network"; |
271 | model = "eTSEC"; | 272 | model = "TSEC"; |
272 | compatible = "gianfar"; | 273 | compatible = "gianfar"; |
273 | reg = <0x24000 0x1000>; | 274 | reg = <0x24000 0x1000>; |
274 | ranges = <0x0 0x24000 0x1000>; | 275 | ranges = <0x0 0x24000 0x1000>; |
275 | local-mac-address = [ 00 00 00 00 00 00 ]; | 276 | local-mac-address = [ 00 00 00 00 00 00 ]; |
276 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; | 277 | interrupts = <29 2 30 2 34 2>; |
277 | interrupt-parent = <&mpic>; | 278 | interrupt-parent = <&mpic>; |
279 | tbi-handle = <&tbi0>; | ||
278 | phy-handle = <&phy0>; | 280 | phy-handle = <&phy0>; |
279 | phy-connection-type = "gmii"; | 281 | phy-connection-type = "gmii"; |
280 | 282 | ||
@@ -288,25 +290,48 @@ | |||
288 | interrupt-parent = <&gef_pic>; | 290 | interrupt-parent = <&gef_pic>; |
289 | interrupts = <0x9 0x4>; | 291 | interrupts = <0x9 0x4>; |
290 | reg = <1>; | 292 | reg = <1>; |
293 | device_type = "ethernet-phy"; | ||
291 | }; | 294 | }; |
292 | phy2: ethernet-phy@2 { | 295 | phy2: ethernet-phy@2 { |
293 | interrupt-parent = <&gef_pic>; | 296 | interrupt-parent = <&gef_pic>; |
294 | interrupts = <0x8 0x4>; | 297 | interrupts = <0x8 0x4>; |
295 | reg = <3>; | 298 | reg = <3>; |
299 | device_type = "ethernet-phy"; | ||
300 | }; | ||
301 | tbi0: tbi-phy@11 { | ||
302 | reg = <0x11>; | ||
303 | device_type = "tbi-phy"; | ||
296 | }; | 304 | }; |
297 | }; | 305 | }; |
298 | }; | 306 | }; |
299 | 307 | ||
300 | enet1: ethernet@26000 { | 308 | enet1: ethernet@26000 { |
309 | #address-cells = <1>; | ||
310 | #size-cells = <1>; | ||
311 | cell-index = <2>; | ||
301 | device_type = "network"; | 312 | device_type = "network"; |
302 | model = "eTSEC"; | 313 | model = "TSEC"; |
303 | compatible = "gianfar"; | 314 | compatible = "gianfar"; |
304 | reg = <0x26000 0x1000>; | 315 | reg = <0x26000 0x1000>; |
316 | ranges = <0x0 0x26000 0x1000>; | ||
305 | local-mac-address = [ 00 00 00 00 00 00 ]; | 317 | local-mac-address = [ 00 00 00 00 00 00 ]; |
306 | interrupts = <0x1f 0x2 0x20 0x2 0x21 0x2>; | 318 | interrupts = <31 2 32 2 33 2>; |
307 | interrupt-parent = <&mpic>; | 319 | interrupt-parent = <&mpic>; |
320 | tbi-handle = <&tbi2>; | ||
308 | phy-handle = <&phy2>; | 321 | phy-handle = <&phy2>; |
309 | phy-connection-type = "gmii"; | 322 | phy-connection-type = "gmii"; |
323 | |||
324 | mdio@520 { | ||
325 | #address-cells = <1>; | ||
326 | #size-cells = <0>; | ||
327 | compatible = "fsl,gianfar-tbi"; | ||
328 | reg = <0x520 0x20>; | ||
329 | |||
330 | tbi2: tbi-phy@11 { | ||
331 | reg = <0x11>; | ||
332 | device_type = "tbi-phy"; | ||
333 | }; | ||
334 | }; | ||
310 | }; | 335 | }; |
311 | 336 | ||
312 | serial0: serial@4500 { | 337 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/hcu4.dts b/arch/powerpc/boot/dts/hcu4.dts deleted file mode 100644 index 7988598da4c9..000000000000 --- a/arch/powerpc/boot/dts/hcu4.dts +++ /dev/null | |||
@@ -1,168 +0,0 @@ | |||
1 | /* | ||
2 | * Device Tree Source for Netstal Maschinen HCU4 | ||
3 | * based on the IBM Walnut | ||
4 | * | ||
5 | * Copyright 2008 | ||
6 | * Niklaus Giger <niklaus.giger@member.fsf.org> | ||
7 | * | ||
8 | * Copyright 2007 IBM Corp. | ||
9 | * Josh Boyer <jwboyer@linux.vnet.ibm.com> | ||
10 | * | ||
11 | * This file is licensed under the terms of the GNU General Public | ||
12 | * License version 2. This program is licensed "as is" without | ||
13 | * any warranty of any kind, whether express or implied. | ||
14 | */ | ||
15 | |||
16 | /dts-v1/; | ||
17 | |||
18 | / { | ||
19 | #address-cells = <0x1>; | ||
20 | #size-cells = <0x1>; | ||
21 | model = "netstal,hcu4"; | ||
22 | compatible = "netstal,hcu4"; | ||
23 | dcr-parent = <0x1>; | ||
24 | |||
25 | aliases { | ||
26 | ethernet0 = "/plb/opb/ethernet@ef600800"; | ||
27 | serial0 = "/plb/opb/serial@ef600300"; | ||
28 | }; | ||
29 | |||
30 | cpus { | ||
31 | #address-cells = <0x1>; | ||
32 | #size-cells = <0x0>; | ||
33 | |||
34 | cpu@0 { | ||
35 | device_type = "cpu"; | ||
36 | model = "PowerPC,405GPr"; | ||
37 | reg = <0x0>; | ||
38 | clock-frequency = <0>; /* Filled in by U-Boot */ | ||
39 | timebase-frequency = <0x0>; /* Filled in by U-Boot */ | ||
40 | i-cache-line-size = <0x20>; | ||
41 | d-cache-line-size = <0x20>; | ||
42 | i-cache-size = <0x4000>; | ||
43 | d-cache-size = <0x4000>; | ||
44 | dcr-controller; | ||
45 | dcr-access-method = "native"; | ||
46 | linux,phandle = <0x1>; | ||
47 | }; | ||
48 | }; | ||
49 | |||
50 | memory { | ||
51 | device_type = "memory"; | ||
52 | reg = <0x0 0x0>; /* Filled in by U-Boot */ | ||
53 | }; | ||
54 | |||
55 | UIC0: interrupt-controller { | ||
56 | compatible = "ibm,uic"; | ||
57 | interrupt-controller; | ||
58 | cell-index = <0x0>; | ||
59 | dcr-reg = <0xc0 0x9>; | ||
60 | #address-cells = <0x0>; | ||
61 | #size-cells = <0x0>; | ||
62 | #interrupt-cells = <0x2>; | ||
63 | linux,phandle = <0x2>; | ||
64 | }; | ||
65 | |||
66 | plb { | ||
67 | compatible = "ibm,plb3"; | ||
68 | #address-cells = <0x1>; | ||
69 | #size-cells = <0x1>; | ||
70 | ranges; | ||
71 | clock-frequency = <0x0>; /* Filled in by U-Boot */ | ||
72 | |||
73 | SDRAM0: memory-controller { | ||
74 | compatible = "ibm,sdram-405gp"; | ||
75 | dcr-reg = <0x10 0x2>; | ||
76 | }; | ||
77 | |||
78 | MAL: mcmal { | ||
79 | compatible = "ibm,mcmal-405gp", "ibm,mcmal"; | ||
80 | dcr-reg = <0x180 0x62>; | ||
81 | num-tx-chans = <0x1>; | ||
82 | num-rx-chans = <0x1>; | ||
83 | interrupt-parent = <0x2>; | ||
84 | interrupts = <0xb 0x4 0xc 0x4 0xa 0x4 0xd 0x4 0xe 0x4>; | ||
85 | linux,phandle = <0x3>; | ||
86 | }; | ||
87 | |||
88 | POB0: opb { | ||
89 | compatible = "ibm,opb-405gp", "ibm,opb"; | ||
90 | #address-cells = <0x1>; | ||
91 | #size-cells = <0x1>; | ||
92 | ranges = <0xef600000 0xef600000 0xa00000>; | ||
93 | dcr-reg = <0xa0 0x5>; | ||
94 | clock-frequency = <0x0>; /* Filled in by U-Boot */ | ||
95 | |||
96 | UART0: serial@ef600300 { | ||
97 | device_type = "serial"; | ||
98 | compatible = "ns16550"; | ||
99 | reg = <0xef600300 0x8>; | ||
100 | virtual-reg = <0xef600300>; | ||
101 | clock-frequency = <0x0>;/* Filled in by U-Boot */ | ||
102 | current-speed = <0>; /* Filled in by U-Boot */ | ||
103 | interrupt-parent = <0x2>; | ||
104 | interrupts = <0x0 0x4>; | ||
105 | }; | ||
106 | |||
107 | IIC: i2c@ef600500 { | ||
108 | compatible = "ibm,iic-405gp", "ibm,iic"; | ||
109 | reg = <0xef600500 0x11>; | ||
110 | interrupt-parent = <0x2>; | ||
111 | interrupts = <0x2 0x4>; | ||
112 | }; | ||
113 | |||
114 | GPIO: gpio@ef600700 { | ||
115 | compatible = "ibm,gpio-405gp"; | ||
116 | reg = <0xef600700 0x20>; | ||
117 | }; | ||
118 | |||
119 | EMAC: ethernet@ef600800 { | ||
120 | device_type = "network"; | ||
121 | compatible = "ibm,emac-405gp", "ibm,emac"; | ||
122 | interrupt-parent = <0x2>; | ||
123 | interrupts = <0xf 0x4 0x9 0x4>; | ||
124 | local-mac-address = [00 00 00 00 00 00]; | ||
125 | reg = <0xef600800 0x70>; | ||
126 | mal-device = <0x3>; | ||
127 | mal-tx-channel = <0x0>; | ||
128 | mal-rx-channel = <0x0>; | ||
129 | cell-index = <0x0>; | ||
130 | max-frame-size = <0x5dc>; | ||
131 | rx-fifo-size = <0x1000>; | ||
132 | tx-fifo-size = <0x800>; | ||
133 | phy-mode = "rmii"; | ||
134 | phy-map = <0x1>; | ||
135 | }; | ||
136 | }; | ||
137 | |||
138 | EBC0: ebc { | ||
139 | compatible = "ibm,ebc-405gp", "ibm,ebc"; | ||
140 | dcr-reg = <0x12 0x2>; | ||
141 | #address-cells = <0x2>; | ||
142 | #size-cells = <0x1>; | ||
143 | clock-frequency = <0x0>; /* Filled in by U-Boot */ | ||
144 | |||
145 | sram@0,0 { | ||
146 | reg = <0x0 0x0 0x80000>; | ||
147 | }; | ||
148 | |||
149 | flash@0,80000 { | ||
150 | compatible = "jedec-flash"; | ||
151 | bank-width = <0x1>; | ||
152 | reg = <0x0 0x80000 0x80000>; | ||
153 | #address-cells = <0x1>; | ||
154 | #size-cells = <0x1>; | ||
155 | |||
156 | partition@0 { | ||
157 | label = "OpenBIOS"; | ||
158 | reg = <0x0 0x80000>; | ||
159 | read-only; | ||
160 | }; | ||
161 | }; | ||
162 | }; | ||
163 | }; | ||
164 | |||
165 | chosen { | ||
166 | linux,stdout-path = "/plb/opb/serial@ef600300"; | ||
167 | }; | ||
168 | }; | ||
diff --git a/arch/powerpc/boot/dts/ksi8560.dts b/arch/powerpc/boot/dts/ksi8560.dts index bdb7fc0fa332..296c572ea605 100644 --- a/arch/powerpc/boot/dts/ksi8560.dts +++ b/arch/powerpc/boot/dts/ksi8560.dts | |||
@@ -306,7 +306,7 @@ | |||
306 | localbus@fdf05000 { | 306 | localbus@fdf05000 { |
307 | #address-cells = <2>; | 307 | #address-cells = <2>; |
308 | #size-cells = <1>; | 308 | #size-cells = <1>; |
309 | compatible = "fsl,mpc8560-localbus"; | 309 | compatible = "fsl,mpc8560-localbus", "simple-bus"; |
310 | reg = <0xfdf05000 0x68>; | 310 | reg = <0xfdf05000 0x68>; |
311 | 311 | ||
312 | ranges = <0x0 0x0 0xe0000000 0x00800000 | 312 | ranges = <0x0 0x0 0xe0000000 0x00800000 |
diff --git a/arch/powerpc/boot/dts/mgcoge.dts b/arch/powerpc/boot/dts/mgcoge.dts index 1360d2f69024..ededaf5ac015 100644 --- a/arch/powerpc/boot/dts/mgcoge.dts +++ b/arch/powerpc/boot/dts/mgcoge.dts | |||
@@ -213,6 +213,15 @@ | |||
213 | linux,network-index = <2>; | 213 | linux,network-index = <2>; |
214 | fsl,cpm-command = <0x16200300>; | 214 | fsl,cpm-command = <0x16200300>; |
215 | }; | 215 | }; |
216 | |||
217 | usb@11b60 { | ||
218 | compatible = "fsl,mpc8272-cpm-usb"; | ||
219 | mode = "peripheral"; | ||
220 | reg = <0x11b60 0x40 0x8b00 0x100>; | ||
221 | interrupts = <11 8>; | ||
222 | interrupt-parent = <&PIC>; | ||
223 | usb-clock = <5>; | ||
224 | }; | ||
216 | }; | 225 | }; |
217 | 226 | ||
218 | cpm2_pio_c: gpio-controller@10d40 { | 227 | cpm2_pio_c: gpio-controller@10d40 { |
diff --git a/arch/powerpc/boot/dts/mpc5200b.dtsi b/arch/powerpc/boot/dts/mpc5200b.dtsi index bc27548e895d..7ab286ab5300 100644 --- a/arch/powerpc/boot/dts/mpc5200b.dtsi +++ b/arch/powerpc/boot/dts/mpc5200b.dtsi | |||
@@ -147,6 +147,8 @@ | |||
147 | }; | 147 | }; |
148 | 148 | ||
149 | spi@f00 { | 149 | spi@f00 { |
150 | #address-cells = <1>; | ||
151 | #size-cells = <0>; | ||
150 | compatible = "fsl,mpc5200b-spi","fsl,mpc5200-spi"; | 152 | compatible = "fsl,mpc5200b-spi","fsl,mpc5200-spi"; |
151 | reg = <0xf00 0x20>; | 153 | reg = <0xf00 0x20>; |
152 | interrupts = <2 13 0 2 14 0>; | 154 | interrupts = <2 13 0 2 14 0>; |
diff --git a/arch/powerpc/boot/dts/mpc8349emitx.dts b/arch/powerpc/boot/dts/mpc8349emitx.dts index b53d1df11e2d..505dc842d808 100644 --- a/arch/powerpc/boot/dts/mpc8349emitx.dts +++ b/arch/powerpc/boot/dts/mpc8349emitx.dts | |||
@@ -390,7 +390,8 @@ | |||
390 | #address-cells = <2>; | 390 | #address-cells = <2>; |
391 | #size-cells = <1>; | 391 | #size-cells = <1>; |
392 | compatible = "fsl,mpc8349e-localbus", | 392 | compatible = "fsl,mpc8349e-localbus", |
393 | "fsl,pq2pro-localbus"; | 393 | "fsl,pq2pro-localbus", |
394 | "simple-bus"; | ||
394 | reg = <0xe0005000 0xd8>; | 395 | reg = <0xe0005000 0xd8>; |
395 | ranges = <0x0 0x0 0xfe000000 0x1000000 /* flash */ | 396 | ranges = <0x0 0x0 0xfe000000 0x1000000 /* flash */ |
396 | 0x1 0x0 0xf8000000 0x20000 /* VSC 7385 */ | 397 | 0x1 0x0 0xf8000000 0x20000 /* VSC 7385 */ |
diff --git a/arch/powerpc/boot/dts/p1010rdb.dts b/arch/powerpc/boot/dts/p1010rdb.dts index 6b33b73a5ba0..d6c669c888e9 100644 --- a/arch/powerpc/boot/dts/p1010rdb.dts +++ b/arch/powerpc/boot/dts/p1010rdb.dts | |||
@@ -23,6 +23,8 @@ | |||
23 | ethernet2 = &enet2; | 23 | ethernet2 = &enet2; |
24 | pci0 = &pci0; | 24 | pci0 = &pci0; |
25 | pci1 = &pci1; | 25 | pci1 = &pci1; |
26 | can0 = &can0; | ||
27 | can1 = &can1; | ||
26 | }; | 28 | }; |
27 | 29 | ||
28 | memory { | 30 | memory { |
@@ -169,14 +171,6 @@ | |||
169 | }; | 171 | }; |
170 | }; | 172 | }; |
171 | 173 | ||
172 | can0@1c000 { | ||
173 | fsl,flexcan-clock-source = "platform"; | ||
174 | }; | ||
175 | |||
176 | can1@1d000 { | ||
177 | fsl,flexcan-clock-source = "platform"; | ||
178 | }; | ||
179 | |||
180 | usb@22000 { | 174 | usb@22000 { |
181 | phy_type = "utmi"; | 175 | phy_type = "utmi"; |
182 | }; | 176 | }; |
diff --git a/arch/powerpc/boot/dts/p1010si.dtsi b/arch/powerpc/boot/dts/p1010si.dtsi index 7f51104f2e36..cabe0a453ae6 100644 --- a/arch/powerpc/boot/dts/p1010si.dtsi +++ b/arch/powerpc/boot/dts/p1010si.dtsi | |||
@@ -140,20 +140,18 @@ | |||
140 | interrupt-parent = <&mpic>; | 140 | interrupt-parent = <&mpic>; |
141 | }; | 141 | }; |
142 | 142 | ||
143 | can0@1c000 { | 143 | can0: can@1c000 { |
144 | compatible = "fsl,flexcan-v1.0"; | 144 | compatible = "fsl,p1010-flexcan"; |
145 | reg = <0x1c000 0x1000>; | 145 | reg = <0x1c000 0x1000>; |
146 | interrupts = <48 0x2>; | 146 | interrupts = <48 0x2>; |
147 | interrupt-parent = <&mpic>; | 147 | interrupt-parent = <&mpic>; |
148 | fsl,flexcan-clock-divider = <2>; | ||
149 | }; | 148 | }; |
150 | 149 | ||
151 | can1@1d000 { | 150 | can1: can@1d000 { |
152 | compatible = "fsl,flexcan-v1.0"; | 151 | compatible = "fsl,p1010-flexcan"; |
153 | reg = <0x1d000 0x1000>; | 152 | reg = <0x1d000 0x1000>; |
154 | interrupts = <61 0x2>; | 153 | interrupts = <61 0x2>; |
155 | interrupt-parent = <&mpic>; | 154 | interrupt-parent = <&mpic>; |
156 | fsl,flexcan-clock-divider = <2>; | ||
157 | }; | 155 | }; |
158 | 156 | ||
159 | L2: l2-cache-controller@20000 { | 157 | L2: l2-cache-controller@20000 { |
diff --git a/arch/powerpc/boot/dts/p1022ds.dts b/arch/powerpc/boot/dts/p1022ds.dts index 1be9743ab5e0..b9b8719a6204 100644 --- a/arch/powerpc/boot/dts/p1022ds.dts +++ b/arch/powerpc/boot/dts/p1022ds.dts | |||
@@ -150,7 +150,7 @@ | |||
150 | }; | 150 | }; |
151 | 151 | ||
152 | board-control@3,0 { | 152 | board-control@3,0 { |
153 | compatible = "fsl,p1022ds-pixis"; | 153 | compatible = "fsl,p1022ds-fpga", "fsl,fpga-ngpixis"; |
154 | reg = <3 0 0x30>; | 154 | reg = <3 0 0x30>; |
155 | interrupt-parent = <&mpic>; | 155 | interrupt-parent = <&mpic>; |
156 | /* | 156 | /* |
diff --git a/arch/powerpc/boot/dts/p2020ds.dts b/arch/powerpc/boot/dts/p2020ds.dts index dae403100f2f..66f03d6477b2 100644 --- a/arch/powerpc/boot/dts/p2020ds.dts +++ b/arch/powerpc/boot/dts/p2020ds.dts | |||
@@ -118,6 +118,11 @@ | |||
118 | }; | 118 | }; |
119 | }; | 119 | }; |
120 | 120 | ||
121 | board-control@3,0 { | ||
122 | compatible = "fsl,p2020ds-fpga", "fsl,fpga-ngpixis"; | ||
123 | reg = <0x3 0x0 0x30>; | ||
124 | }; | ||
125 | |||
121 | nand@4,0 { | 126 | nand@4,0 { |
122 | compatible = "fsl,elbc-fcm-nand"; | 127 | compatible = "fsl,elbc-fcm-nand"; |
123 | reg = <0x4 0x0 0x40000>; | 128 | reg = <0x4 0x0 0x40000>; |
diff --git a/arch/powerpc/boot/dts/p2040rdb.dts b/arch/powerpc/boot/dts/p2041rdb.dts index 7d84e391c632..79b6895027c0 100644 --- a/arch/powerpc/boot/dts/p2040rdb.dts +++ b/arch/powerpc/boot/dts/p2041rdb.dts | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * P2040RDB Device Tree Source | 2 | * P2041RDB Device Tree Source |
3 | * | 3 | * |
4 | * Copyright 2011 Freescale Semiconductor Inc. | 4 | * Copyright 2011 Freescale Semiconductor Inc. |
5 | * | 5 | * |
@@ -32,11 +32,11 @@ | |||
32 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 32 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
33 | */ | 33 | */ |
34 | 34 | ||
35 | /include/ "p2040si.dtsi" | 35 | /include/ "p2041si.dtsi" |
36 | 36 | ||
37 | / { | 37 | / { |
38 | model = "fsl,P2040RDB"; | 38 | model = "fsl,P2041RDB"; |
39 | compatible = "fsl,P2040RDB"; | 39 | compatible = "fsl,P2041RDB"; |
40 | #address-cells = <2>; | 40 | #address-cells = <2>; |
41 | #size-cells = <2>; | 41 | #size-cells = <2>; |
42 | interrupt-parent = <&mpic>; | 42 | interrupt-parent = <&mpic>; |
@@ -45,6 +45,10 @@ | |||
45 | device_type = "memory"; | 45 | device_type = "memory"; |
46 | }; | 46 | }; |
47 | 47 | ||
48 | dcsr: dcsr@f00000000 { | ||
49 | ranges = <0x00000000 0xf 0x00000000 0x01008000>; | ||
50 | }; | ||
51 | |||
48 | soc: soc@ffe000000 { | 52 | soc: soc@ffe000000 { |
49 | spi@110000 { | 53 | spi@110000 { |
50 | flash@0 { | 54 | flash@0 { |
@@ -97,13 +101,8 @@ | |||
97 | }; | 101 | }; |
98 | }; | 102 | }; |
99 | 103 | ||
100 | usb0: usb@210000 { | ||
101 | phy_type = "utmi"; | ||
102 | }; | ||
103 | |||
104 | usb1: usb@211000 { | 104 | usb1: usb@211000 { |
105 | dr_mode = "host"; | 105 | dr_mode = "host"; |
106 | phy_type = "utmi"; | ||
107 | }; | 106 | }; |
108 | }; | 107 | }; |
109 | 108 | ||
diff --git a/arch/powerpc/boot/dts/p2040si.dtsi b/arch/powerpc/boot/dts/p2041si.dtsi index 5fdbb24c0763..f7492edd0dfd 100644 --- a/arch/powerpc/boot/dts/p2040si.dtsi +++ b/arch/powerpc/boot/dts/p2041si.dtsi | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * P2040 Silicon Device Tree Source | 2 | * P2041 Silicon Device Tree Source |
3 | * | 3 | * |
4 | * Copyright 2011 Freescale Semiconductor Inc. | 4 | * Copyright 2011 Freescale Semiconductor Inc. |
5 | * | 5 | * |
@@ -35,13 +35,14 @@ | |||
35 | /dts-v1/; | 35 | /dts-v1/; |
36 | 36 | ||
37 | / { | 37 | / { |
38 | compatible = "fsl,P2040"; | 38 | compatible = "fsl,P2041"; |
39 | #address-cells = <2>; | 39 | #address-cells = <2>; |
40 | #size-cells = <2>; | 40 | #size-cells = <2>; |
41 | interrupt-parent = <&mpic>; | 41 | interrupt-parent = <&mpic>; |
42 | 42 | ||
43 | aliases { | 43 | aliases { |
44 | ccsr = &soc; | 44 | ccsr = &soc; |
45 | dcsr = &dcsr; | ||
45 | 46 | ||
46 | serial0 = &serial0; | 47 | serial0 = &serial0; |
47 | serial1 = &serial1; | 48 | serial1 = &serial1; |
@@ -109,6 +110,74 @@ | |||
109 | }; | 110 | }; |
110 | }; | 111 | }; |
111 | 112 | ||
113 | dcsr: dcsr@f00000000 { | ||
114 | #address-cells = <1>; | ||
115 | #size-cells = <1>; | ||
116 | compatible = "fsl,dcsr", "simple-bus"; | ||
117 | |||
118 | dcsr-epu@0 { | ||
119 | compatible = "fsl,dcsr-epu"; | ||
120 | interrupts = <52 2 0 0 | ||
121 | 84 2 0 0 | ||
122 | 85 2 0 0>; | ||
123 | interrupt-parent = <&mpic>; | ||
124 | reg = <0x0 0x1000>; | ||
125 | }; | ||
126 | dcsr-npc { | ||
127 | compatible = "fsl,dcsr-npc"; | ||
128 | reg = <0x1000 0x1000 0x1000000 0x8000>; | ||
129 | }; | ||
130 | dcsr-nxc@2000 { | ||
131 | compatible = "fsl,dcsr-nxc"; | ||
132 | reg = <0x2000 0x1000>; | ||
133 | }; | ||
134 | dcsr-corenet { | ||
135 | compatible = "fsl,dcsr-corenet"; | ||
136 | reg = <0x8000 0x1000 0xB0000 0x1000>; | ||
137 | }; | ||
138 | dcsr-dpaa@9000 { | ||
139 | compatible = "fsl,p2041-dcsr-dpaa", "fsl,dcsr-dpaa"; | ||
140 | reg = <0x9000 0x1000>; | ||
141 | }; | ||
142 | dcsr-ocn@11000 { | ||
143 | compatible = "fsl,p2041-dcsr-ocn", "fsl,dcsr-ocn"; | ||
144 | reg = <0x11000 0x1000>; | ||
145 | }; | ||
146 | dcsr-ddr@12000 { | ||
147 | compatible = "fsl,dcsr-ddr"; | ||
148 | dev-handle = <&ddr>; | ||
149 | reg = <0x12000 0x1000>; | ||
150 | }; | ||
151 | dcsr-nal@18000 { | ||
152 | compatible = "fsl,p2041-dcsr-nal", "fsl,dcsr-nal"; | ||
153 | reg = <0x18000 0x1000>; | ||
154 | }; | ||
155 | dcsr-rcpm@22000 { | ||
156 | compatible = "fsl,p2041-dcsr-rcpm", "fsl,dcsr-rcpm"; | ||
157 | reg = <0x22000 0x1000>; | ||
158 | }; | ||
159 | dcsr-cpu-sb-proxy@40000 { | ||
160 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
161 | cpu-handle = <&cpu0>; | ||
162 | reg = <0x40000 0x1000>; | ||
163 | }; | ||
164 | dcsr-cpu-sb-proxy@41000 { | ||
165 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
166 | cpu-handle = <&cpu1>; | ||
167 | reg = <0x41000 0x1000>; | ||
168 | }; | ||
169 | dcsr-cpu-sb-proxy@42000 { | ||
170 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
171 | cpu-handle = <&cpu2>; | ||
172 | reg = <0x42000 0x1000>; | ||
173 | }; | ||
174 | dcsr-cpu-sb-proxy@43000 { | ||
175 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
176 | cpu-handle = <&cpu3>; | ||
177 | reg = <0x43000 0x1000>; | ||
178 | }; | ||
179 | }; | ||
180 | |||
112 | soc: soc@ffe000000 { | 181 | soc: soc@ffe000000 { |
113 | #address-cells = <1>; | 182 | #address-cells = <1>; |
114 | #size-cells = <1>; | 183 | #size-cells = <1>; |
@@ -128,14 +197,14 @@ | |||
128 | fsl,num-laws = <32>; | 197 | fsl,num-laws = <32>; |
129 | }; | 198 | }; |
130 | 199 | ||
131 | memory-controller@8000 { | 200 | ddr: memory-controller@8000 { |
132 | compatible = "fsl,qoriq-memory-controller-v4.5", "fsl,qoriq-memory-controller"; | 201 | compatible = "fsl,qoriq-memory-controller-v4.5", "fsl,qoriq-memory-controller"; |
133 | reg = <0x8000 0x1000>; | 202 | reg = <0x8000 0x1000>; |
134 | interrupts = <16 2 1 23>; | 203 | interrupts = <16 2 1 23>; |
135 | }; | 204 | }; |
136 | 205 | ||
137 | cpc: l3-cache-controller@10000 { | 206 | cpc: l3-cache-controller@10000 { |
138 | compatible = "fsl,p2040-l3-cache-controller", "fsl,p4080-l3-cache-controller", "cache"; | 207 | compatible = "fsl,p2041-l3-cache-controller", "fsl,p4080-l3-cache-controller", "cache"; |
139 | reg = <0x10000 0x1000>; | 208 | reg = <0x10000 0x1000>; |
140 | interrupts = <16 2 1 27>; | 209 | interrupts = <16 2 1 27>; |
141 | }; | 210 | }; |
@@ -226,7 +295,7 @@ | |||
226 | }; | 295 | }; |
227 | 296 | ||
228 | clockgen: global-utilities@e1000 { | 297 | clockgen: global-utilities@e1000 { |
229 | compatible = "fsl,p2040-clockgen", "fsl,qoriq-clockgen-1.0"; | 298 | compatible = "fsl,p2041-clockgen", "fsl,qoriq-clockgen-1.0"; |
230 | reg = <0xe1000 0x1000>; | 299 | reg = <0xe1000 0x1000>; |
231 | clock-frequency = <0>; | 300 | clock-frequency = <0>; |
232 | }; | 301 | }; |
@@ -238,45 +307,45 @@ | |||
238 | }; | 307 | }; |
239 | 308 | ||
240 | sfp: sfp@e8000 { | 309 | sfp: sfp@e8000 { |
241 | compatible = "fsl,p2040-sfp", "fsl,qoriq-sfp-1.0"; | 310 | compatible = "fsl,p2041-sfp", "fsl,qoriq-sfp-1.0"; |
242 | reg = <0xe8000 0x1000>; | 311 | reg = <0xe8000 0x1000>; |
243 | }; | 312 | }; |
244 | 313 | ||
245 | serdes: serdes@ea000 { | 314 | serdes: serdes@ea000 { |
246 | compatible = "fsl,p2040-serdes"; | 315 | compatible = "fsl,p2041-serdes"; |
247 | reg = <0xea000 0x1000>; | 316 | reg = <0xea000 0x1000>; |
248 | }; | 317 | }; |
249 | 318 | ||
250 | dma0: dma@100300 { | 319 | dma0: dma@100300 { |
251 | #address-cells = <1>; | 320 | #address-cells = <1>; |
252 | #size-cells = <1>; | 321 | #size-cells = <1>; |
253 | compatible = "fsl,p2040-dma", "fsl,eloplus-dma"; | 322 | compatible = "fsl,p2041-dma", "fsl,eloplus-dma"; |
254 | reg = <0x100300 0x4>; | 323 | reg = <0x100300 0x4>; |
255 | ranges = <0x0 0x100100 0x200>; | 324 | ranges = <0x0 0x100100 0x200>; |
256 | cell-index = <0>; | 325 | cell-index = <0>; |
257 | dma-channel@0 { | 326 | dma-channel@0 { |
258 | compatible = "fsl,p2040-dma-channel", | 327 | compatible = "fsl,p2041-dma-channel", |
259 | "fsl,eloplus-dma-channel"; | 328 | "fsl,eloplus-dma-channel"; |
260 | reg = <0x0 0x80>; | 329 | reg = <0x0 0x80>; |
261 | cell-index = <0>; | 330 | cell-index = <0>; |
262 | interrupts = <28 2 0 0>; | 331 | interrupts = <28 2 0 0>; |
263 | }; | 332 | }; |
264 | dma-channel@80 { | 333 | dma-channel@80 { |
265 | compatible = "fsl,p2040-dma-channel", | 334 | compatible = "fsl,p2041-dma-channel", |
266 | "fsl,eloplus-dma-channel"; | 335 | "fsl,eloplus-dma-channel"; |
267 | reg = <0x80 0x80>; | 336 | reg = <0x80 0x80>; |
268 | cell-index = <1>; | 337 | cell-index = <1>; |
269 | interrupts = <29 2 0 0>; | 338 | interrupts = <29 2 0 0>; |
270 | }; | 339 | }; |
271 | dma-channel@100 { | 340 | dma-channel@100 { |
272 | compatible = "fsl,p2040-dma-channel", | 341 | compatible = "fsl,p2041-dma-channel", |
273 | "fsl,eloplus-dma-channel"; | 342 | "fsl,eloplus-dma-channel"; |
274 | reg = <0x100 0x80>; | 343 | reg = <0x100 0x80>; |
275 | cell-index = <2>; | 344 | cell-index = <2>; |
276 | interrupts = <30 2 0 0>; | 345 | interrupts = <30 2 0 0>; |
277 | }; | 346 | }; |
278 | dma-channel@180 { | 347 | dma-channel@180 { |
279 | compatible = "fsl,p2040-dma-channel", | 348 | compatible = "fsl,p2041-dma-channel", |
280 | "fsl,eloplus-dma-channel"; | 349 | "fsl,eloplus-dma-channel"; |
281 | reg = <0x180 0x80>; | 350 | reg = <0x180 0x80>; |
282 | cell-index = <3>; | 351 | cell-index = <3>; |
@@ -287,33 +356,33 @@ | |||
287 | dma1: dma@101300 { | 356 | dma1: dma@101300 { |
288 | #address-cells = <1>; | 357 | #address-cells = <1>; |
289 | #size-cells = <1>; | 358 | #size-cells = <1>; |
290 | compatible = "fsl,p2040-dma", "fsl,eloplus-dma"; | 359 | compatible = "fsl,p2041-dma", "fsl,eloplus-dma"; |
291 | reg = <0x101300 0x4>; | 360 | reg = <0x101300 0x4>; |
292 | ranges = <0x0 0x101100 0x200>; | 361 | ranges = <0x0 0x101100 0x200>; |
293 | cell-index = <1>; | 362 | cell-index = <1>; |
294 | dma-channel@0 { | 363 | dma-channel@0 { |
295 | compatible = "fsl,p2040-dma-channel", | 364 | compatible = "fsl,p2041-dma-channel", |
296 | "fsl,eloplus-dma-channel"; | 365 | "fsl,eloplus-dma-channel"; |
297 | reg = <0x0 0x80>; | 366 | reg = <0x0 0x80>; |
298 | cell-index = <0>; | 367 | cell-index = <0>; |
299 | interrupts = <32 2 0 0>; | 368 | interrupts = <32 2 0 0>; |
300 | }; | 369 | }; |
301 | dma-channel@80 { | 370 | dma-channel@80 { |
302 | compatible = "fsl,p2040-dma-channel", | 371 | compatible = "fsl,p2041-dma-channel", |
303 | "fsl,eloplus-dma-channel"; | 372 | "fsl,eloplus-dma-channel"; |
304 | reg = <0x80 0x80>; | 373 | reg = <0x80 0x80>; |
305 | cell-index = <1>; | 374 | cell-index = <1>; |
306 | interrupts = <33 2 0 0>; | 375 | interrupts = <33 2 0 0>; |
307 | }; | 376 | }; |
308 | dma-channel@100 { | 377 | dma-channel@100 { |
309 | compatible = "fsl,p2040-dma-channel", | 378 | compatible = "fsl,p2041-dma-channel", |
310 | "fsl,eloplus-dma-channel"; | 379 | "fsl,eloplus-dma-channel"; |
311 | reg = <0x100 0x80>; | 380 | reg = <0x100 0x80>; |
312 | cell-index = <2>; | 381 | cell-index = <2>; |
313 | interrupts = <34 2 0 0>; | 382 | interrupts = <34 2 0 0>; |
314 | }; | 383 | }; |
315 | dma-channel@180 { | 384 | dma-channel@180 { |
316 | compatible = "fsl,p2040-dma-channel", | 385 | compatible = "fsl,p2041-dma-channel", |
317 | "fsl,eloplus-dma-channel"; | 386 | "fsl,eloplus-dma-channel"; |
318 | reg = <0x180 0x80>; | 387 | reg = <0x180 0x80>; |
319 | cell-index = <3>; | 388 | cell-index = <3>; |
@@ -324,22 +393,20 @@ | |||
324 | spi@110000 { | 393 | spi@110000 { |
325 | #address-cells = <1>; | 394 | #address-cells = <1>; |
326 | #size-cells = <0>; | 395 | #size-cells = <0>; |
327 | compatible = "fsl,p2040-espi", "fsl,mpc8536-espi"; | 396 | compatible = "fsl,p2041-espi", "fsl,mpc8536-espi"; |
328 | reg = <0x110000 0x1000>; | 397 | reg = <0x110000 0x1000>; |
329 | interrupts = <53 0x2 0 0>; | 398 | interrupts = <53 0x2 0 0>; |
330 | fsl,espi-num-chipselects = <4>; | 399 | fsl,espi-num-chipselects = <4>; |
331 | |||
332 | }; | 400 | }; |
333 | 401 | ||
334 | sdhc: sdhc@114000 { | 402 | sdhc: sdhc@114000 { |
335 | compatible = "fsl,p2040-esdhc", "fsl,esdhc"; | 403 | compatible = "fsl,p2041-esdhc", "fsl,esdhc"; |
336 | reg = <0x114000 0x1000>; | 404 | reg = <0x114000 0x1000>; |
337 | interrupts = <48 2 0 0>; | 405 | interrupts = <48 2 0 0>; |
338 | sdhci,auto-cmd12; | 406 | sdhci,auto-cmd12; |
339 | clock-frequency = <0>; | 407 | clock-frequency = <0>; |
340 | }; | 408 | }; |
341 | 409 | ||
342 | |||
343 | i2c@118000 { | 410 | i2c@118000 { |
344 | #address-cells = <1>; | 411 | #address-cells = <1>; |
345 | #size-cells = <0>; | 412 | #size-cells = <0>; |
@@ -417,7 +484,7 @@ | |||
417 | }; | 484 | }; |
418 | 485 | ||
419 | gpio0: gpio@130000 { | 486 | gpio0: gpio@130000 { |
420 | compatible = "fsl,p2040-gpio", "fsl,qoriq-gpio"; | 487 | compatible = "fsl,p2041-gpio", "fsl,qoriq-gpio"; |
421 | reg = <0x130000 0x1000>; | 488 | reg = <0x130000 0x1000>; |
422 | interrupts = <55 2 0 0>; | 489 | interrupts = <55 2 0 0>; |
423 | #gpio-cells = <2>; | 490 | #gpio-cells = <2>; |
@@ -425,32 +492,34 @@ | |||
425 | }; | 492 | }; |
426 | 493 | ||
427 | usb0: usb@210000 { | 494 | usb0: usb@210000 { |
428 | compatible = "fsl,p2040-usb2-mph", | 495 | compatible = "fsl,p2041-usb2-mph", |
429 | "fsl,mpc85xx-usb2-mph", "fsl-usb2-mph"; | 496 | "fsl,mpc85xx-usb2-mph", "fsl-usb2-mph"; |
430 | reg = <0x210000 0x1000>; | 497 | reg = <0x210000 0x1000>; |
431 | #address-cells = <1>; | 498 | #address-cells = <1>; |
432 | #size-cells = <0>; | 499 | #size-cells = <0>; |
433 | interrupts = <44 0x2 0 0>; | 500 | interrupts = <44 0x2 0 0>; |
501 | phy_type = "utmi"; | ||
434 | port0; | 502 | port0; |
435 | }; | 503 | }; |
436 | 504 | ||
437 | usb1: usb@211000 { | 505 | usb1: usb@211000 { |
438 | compatible = "fsl,p2040-usb2-dr", | 506 | compatible = "fsl,p2041-usb2-dr", |
439 | "fsl,mpc85xx-usb2-dr", "fsl-usb2-dr"; | 507 | "fsl,mpc85xx-usb2-dr", "fsl-usb2-dr"; |
440 | reg = <0x211000 0x1000>; | 508 | reg = <0x211000 0x1000>; |
441 | #address-cells = <1>; | 509 | #address-cells = <1>; |
442 | #size-cells = <0>; | 510 | #size-cells = <0>; |
443 | interrupts = <45 0x2 0 0>; | 511 | interrupts = <45 0x2 0 0>; |
512 | phy_type = "utmi"; | ||
444 | }; | 513 | }; |
445 | 514 | ||
446 | sata@220000 { | 515 | sata@220000 { |
447 | compatible = "fsl,p2040-sata", "fsl,pq-sata-v2"; | 516 | compatible = "fsl,p2041-sata", "fsl,pq-sata-v2"; |
448 | reg = <0x220000 0x1000>; | 517 | reg = <0x220000 0x1000>; |
449 | interrupts = <68 0x2 0 0>; | 518 | interrupts = <68 0x2 0 0>; |
450 | }; | 519 | }; |
451 | 520 | ||
452 | sata@221000 { | 521 | sata@221000 { |
453 | compatible = "fsl,p2040-sata", "fsl,pq-sata-v2"; | 522 | compatible = "fsl,p2041-sata", "fsl,pq-sata-v2"; |
454 | reg = <0x221000 0x1000>; | 523 | reg = <0x221000 0x1000>; |
455 | interrupts = <69 0x2 0 0>; | 524 | interrupts = <69 0x2 0 0>; |
456 | }; | 525 | }; |
@@ -534,19 +603,19 @@ | |||
534 | }; | 603 | }; |
535 | 604 | ||
536 | localbus@ffe124000 { | 605 | localbus@ffe124000 { |
537 | compatible = "fsl,p2040-elbc", "fsl,elbc", "simple-bus"; | 606 | compatible = "fsl,p2041-elbc", "fsl,elbc", "simple-bus"; |
538 | interrupts = <25 2 0 0>; | 607 | interrupts = <25 2 0 0>; |
539 | #address-cells = <2>; | 608 | #address-cells = <2>; |
540 | #size-cells = <1>; | 609 | #size-cells = <1>; |
541 | }; | 610 | }; |
542 | 611 | ||
543 | pci0: pcie@ffe200000 { | 612 | pci0: pcie@ffe200000 { |
544 | compatible = "fsl,p2040-pcie", "fsl,qoriq-pcie-v2.2"; | 613 | compatible = "fsl,p2041-pcie", "fsl,qoriq-pcie-v2.2"; |
545 | device_type = "pci"; | 614 | device_type = "pci"; |
546 | #size-cells = <2>; | 615 | #size-cells = <2>; |
547 | #address-cells = <3>; | 616 | #address-cells = <3>; |
548 | bus-range = <0x0 0xff>; | 617 | bus-range = <0x0 0xff>; |
549 | clock-frequency = <0x1fca055>; | 618 | clock-frequency = <33333333>; |
550 | fsl,msi = <&msi0>; | 619 | fsl,msi = <&msi0>; |
551 | interrupts = <16 2 1 15>; | 620 | interrupts = <16 2 1 15>; |
552 | pcie@0 { | 621 | pcie@0 { |
@@ -568,12 +637,12 @@ | |||
568 | }; | 637 | }; |
569 | 638 | ||
570 | pci1: pcie@ffe201000 { | 639 | pci1: pcie@ffe201000 { |
571 | compatible = "fsl,p2040-pcie", "fsl,qoriq-pcie-v2.2"; | 640 | compatible = "fsl,p2041-pcie", "fsl,qoriq-pcie-v2.2"; |
572 | device_type = "pci"; | 641 | device_type = "pci"; |
573 | #size-cells = <2>; | 642 | #size-cells = <2>; |
574 | #address-cells = <3>; | 643 | #address-cells = <3>; |
575 | bus-range = <0 0xff>; | 644 | bus-range = <0 0xff>; |
576 | clock-frequency = <0x1fca055>; | 645 | clock-frequency = <33333333>; |
577 | fsl,msi = <&msi1>; | 646 | fsl,msi = <&msi1>; |
578 | interrupts = <16 2 1 14>; | 647 | interrupts = <16 2 1 14>; |
579 | pcie@0 { | 648 | pcie@0 { |
@@ -595,12 +664,12 @@ | |||
595 | }; | 664 | }; |
596 | 665 | ||
597 | pci2: pcie@ffe202000 { | 666 | pci2: pcie@ffe202000 { |
598 | compatible = "fsl,p2040-pcie", "fsl,qoriq-pcie-v2.2"; | 667 | compatible = "fsl,p2041-pcie", "fsl,qoriq-pcie-v2.2"; |
599 | device_type = "pci"; | 668 | device_type = "pci"; |
600 | #size-cells = <2>; | 669 | #size-cells = <2>; |
601 | #address-cells = <3>; | 670 | #address-cells = <3>; |
602 | bus-range = <0x0 0xff>; | 671 | bus-range = <0x0 0xff>; |
603 | clock-frequency = <0x1fca055>; | 672 | clock-frequency = <33333333>; |
604 | fsl,msi = <&msi2>; | 673 | fsl,msi = <&msi2>; |
605 | interrupts = <16 2 1 13>; | 674 | interrupts = <16 2 1 13>; |
606 | pcie@0 { | 675 | pcie@0 { |
diff --git a/arch/powerpc/boot/dts/p3041ds.dts b/arch/powerpc/boot/dts/p3041ds.dts index 69cae674f396..bbd113b49a8f 100644 --- a/arch/powerpc/boot/dts/p3041ds.dts +++ b/arch/powerpc/boot/dts/p3041ds.dts | |||
@@ -45,6 +45,10 @@ | |||
45 | device_type = "memory"; | 45 | device_type = "memory"; |
46 | }; | 46 | }; |
47 | 47 | ||
48 | dcsr: dcsr@f00000000 { | ||
49 | ranges = <0x00000000 0xf 0x00000000 0x01008000>; | ||
50 | }; | ||
51 | |||
48 | soc: soc@ffe000000 { | 52 | soc: soc@ffe000000 { |
49 | spi@110000 { | 53 | spi@110000 { |
50 | flash@0 { | 54 | flash@0 { |
@@ -147,8 +151,8 @@ | |||
147 | }; | 151 | }; |
148 | 152 | ||
149 | board-control@3,0 { | 153 | board-control@3,0 { |
150 | compatible = "fsl,p3041ds-pixis"; | 154 | compatible = "fsl,p3041ds-fpga", "fsl,fpga-ngpixis"; |
151 | reg = <3 0 0x20>; | 155 | reg = <3 0 0x30>; |
152 | }; | 156 | }; |
153 | }; | 157 | }; |
154 | 158 | ||
diff --git a/arch/powerpc/boot/dts/p3041si.dtsi b/arch/powerpc/boot/dts/p3041si.dtsi index 8b695801f505..87130b732bc7 100644 --- a/arch/powerpc/boot/dts/p3041si.dtsi +++ b/arch/powerpc/boot/dts/p3041si.dtsi | |||
@@ -42,6 +42,7 @@ | |||
42 | 42 | ||
43 | aliases { | 43 | aliases { |
44 | ccsr = &soc; | 44 | ccsr = &soc; |
45 | dcsr = &dcsr; | ||
45 | 46 | ||
46 | serial0 = &serial0; | 47 | serial0 = &serial0; |
47 | serial1 = &serial1; | 48 | serial1 = &serial1; |
@@ -114,6 +115,74 @@ | |||
114 | }; | 115 | }; |
115 | }; | 116 | }; |
116 | 117 | ||
118 | dcsr: dcsr@f00000000 { | ||
119 | #address-cells = <1>; | ||
120 | #size-cells = <1>; | ||
121 | compatible = "fsl,dcsr", "simple-bus"; | ||
122 | |||
123 | dcsr-epu@0 { | ||
124 | compatible = "fsl,dcsr-epu"; | ||
125 | interrupts = <52 2 0 0 | ||
126 | 84 2 0 0 | ||
127 | 85 2 0 0>; | ||
128 | interrupt-parent = <&mpic>; | ||
129 | reg = <0x0 0x1000>; | ||
130 | }; | ||
131 | dcsr-npc { | ||
132 | compatible = "fsl,dcsr-npc"; | ||
133 | reg = <0x1000 0x1000 0x1000000 0x8000>; | ||
134 | }; | ||
135 | dcsr-nxc@2000 { | ||
136 | compatible = "fsl,dcsr-nxc"; | ||
137 | reg = <0x2000 0x1000>; | ||
138 | }; | ||
139 | dcsr-corenet { | ||
140 | compatible = "fsl,dcsr-corenet"; | ||
141 | reg = <0x8000 0x1000 0xB0000 0x1000>; | ||
142 | }; | ||
143 | dcsr-dpaa@9000 { | ||
144 | compatible = "fsl,p43041-dcsr-dpaa", "fsl,dcsr-dpaa"; | ||
145 | reg = <0x9000 0x1000>; | ||
146 | }; | ||
147 | dcsr-ocn@11000 { | ||
148 | compatible = "fsl,p43041-dcsr-ocn", "fsl,dcsr-ocn"; | ||
149 | reg = <0x11000 0x1000>; | ||
150 | }; | ||
151 | dcsr-ddr@12000 { | ||
152 | compatible = "fsl,dcsr-ddr"; | ||
153 | dev-handle = <&ddr>; | ||
154 | reg = <0x12000 0x1000>; | ||
155 | }; | ||
156 | dcsr-nal@18000 { | ||
157 | compatible = "fsl,p43041-dcsr-nal", "fsl,dcsr-nal"; | ||
158 | reg = <0x18000 0x1000>; | ||
159 | }; | ||
160 | dcsr-rcpm@22000 { | ||
161 | compatible = "fsl,p43041-dcsr-rcpm", "fsl,dcsr-rcpm"; | ||
162 | reg = <0x22000 0x1000>; | ||
163 | }; | ||
164 | dcsr-cpu-sb-proxy@40000 { | ||
165 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
166 | cpu-handle = <&cpu0>; | ||
167 | reg = <0x40000 0x1000>; | ||
168 | }; | ||
169 | dcsr-cpu-sb-proxy@41000 { | ||
170 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
171 | cpu-handle = <&cpu1>; | ||
172 | reg = <0x41000 0x1000>; | ||
173 | }; | ||
174 | dcsr-cpu-sb-proxy@42000 { | ||
175 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
176 | cpu-handle = <&cpu2>; | ||
177 | reg = <0x42000 0x1000>; | ||
178 | }; | ||
179 | dcsr-cpu-sb-proxy@43000 { | ||
180 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
181 | cpu-handle = <&cpu3>; | ||
182 | reg = <0x43000 0x1000>; | ||
183 | }; | ||
184 | }; | ||
185 | |||
117 | soc: soc@ffe000000 { | 186 | soc: soc@ffe000000 { |
118 | #address-cells = <1>; | 187 | #address-cells = <1>; |
119 | #size-cells = <1>; | 188 | #size-cells = <1>; |
@@ -133,7 +202,7 @@ | |||
133 | fsl,num-laws = <32>; | 202 | fsl,num-laws = <32>; |
134 | }; | 203 | }; |
135 | 204 | ||
136 | memory-controller@8000 { | 205 | ddr: memory-controller@8000 { |
137 | compatible = "fsl,qoriq-memory-controller-v4.5", "fsl,qoriq-memory-controller"; | 206 | compatible = "fsl,qoriq-memory-controller-v4.5", "fsl,qoriq-memory-controller"; |
138 | reg = <0x8000 0x1000>; | 207 | reg = <0x8000 0x1000>; |
139 | interrupts = <16 2 1 23>; | 208 | interrupts = <16 2 1 23>; |
diff --git a/arch/powerpc/boot/dts/p3060qds.dts b/arch/powerpc/boot/dts/p3060qds.dts new file mode 100644 index 000000000000..08b9193213e7 --- /dev/null +++ b/arch/powerpc/boot/dts/p3060qds.dts | |||
@@ -0,0 +1,238 @@ | |||
1 | /* | ||
2 | * P3060QDS Device Tree Source | ||
3 | * | ||
4 | * Copyright 2011 Freescale Semiconductor Inc. | ||
5 | * | ||
6 | * Redistribution and use in source and binary forms, with or without | ||
7 | * modification, are permitted provided that the following conditions are met: | ||
8 | * * Redistributions of source code must retain the above copyright | ||
9 | * notice, this list of conditions and the following disclaimer. | ||
10 | * * Redistributions in binary form must reproduce the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer in the | ||
12 | * documentation and/or other materials provided with the distribution. | ||
13 | * * Neither the name of Freescale Semiconductor nor the | ||
14 | * names of its contributors may be used to endorse or promote products | ||
15 | * derived from this software without specific prior written permission. | ||
16 | * | ||
17 | * | ||
18 | * ALTERNATIVELY, this software may be distributed under the terms of the | ||
19 | * GNU General Public License ("GPL") as published by the Free Software | ||
20 | * Foundation, either version 2 of that License or (at your option) any | ||
21 | * later version. | ||
22 | * | ||
23 | * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY | ||
24 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
25 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
26 | * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY | ||
27 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
28 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
29 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
30 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
31 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
32 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
33 | */ | ||
34 | |||
35 | /include/ "p3060si.dtsi" | ||
36 | |||
37 | / { | ||
38 | model = "fsl,P3060QDS"; | ||
39 | compatible = "fsl,P3060QDS"; | ||
40 | #address-cells = <2>; | ||
41 | #size-cells = <2>; | ||
42 | interrupt-parent = <&mpic>; | ||
43 | |||
44 | memory { | ||
45 | device_type = "memory"; | ||
46 | }; | ||
47 | |||
48 | dcsr: dcsr@f00000000 { | ||
49 | ranges = <0x00000000 0xf 0x00000000 0x01008000>; | ||
50 | }; | ||
51 | |||
52 | soc: soc@ffe000000 { | ||
53 | spi@110000 { | ||
54 | flash@0 { | ||
55 | #address-cells = <1>; | ||
56 | #size-cells = <1>; | ||
57 | compatible = "spansion,s25sl12801"; | ||
58 | reg = <0>; | ||
59 | spi-max-frequency = <40000000>; /* input clock */ | ||
60 | partition@u-boot { | ||
61 | label = "u-boot"; | ||
62 | reg = <0x00000000 0x00100000>; | ||
63 | read-only; | ||
64 | }; | ||
65 | partition@kernel { | ||
66 | label = "kernel"; | ||
67 | reg = <0x00100000 0x00500000>; | ||
68 | read-only; | ||
69 | }; | ||
70 | partition@dtb { | ||
71 | label = "dtb"; | ||
72 | reg = <0x00600000 0x00100000>; | ||
73 | read-only; | ||
74 | }; | ||
75 | partition@fs { | ||
76 | label = "file system"; | ||
77 | reg = <0x00700000 0x00900000>; | ||
78 | }; | ||
79 | }; | ||
80 | flash@1 { | ||
81 | #address-cells = <1>; | ||
82 | #size-cells = <1>; | ||
83 | compatible = "spansion,en25q32b"; | ||
84 | reg = <1>; | ||
85 | spi-max-frequency = <40000000>; /* input clock */ | ||
86 | partition@spi1 { | ||
87 | label = "spi1"; | ||
88 | reg = <0x00000000 0x00400000>; | ||
89 | }; | ||
90 | }; | ||
91 | flash@2 { | ||
92 | #address-cells = <1>; | ||
93 | #size-cells = <1>; | ||
94 | compatible = "atmel,at45db081d"; | ||
95 | reg = <2>; | ||
96 | spi-max-frequency = <40000000>; /* input clock */ | ||
97 | partition@spi1 { | ||
98 | label = "spi2"; | ||
99 | reg = <0x00000000 0x00100000>; | ||
100 | }; | ||
101 | }; | ||
102 | flash@3 { | ||
103 | #address-cells = <1>; | ||
104 | #size-cells = <1>; | ||
105 | compatible = "spansion,sst25wf040"; | ||
106 | reg = <3>; | ||
107 | spi-max-frequency = <40000000>; /* input clock */ | ||
108 | partition@spi3 { | ||
109 | label = "spi3"; | ||
110 | reg = <0x00000000 0x00080000>; | ||
111 | }; | ||
112 | }; | ||
113 | }; | ||
114 | |||
115 | i2c@118000 { | ||
116 | eeprom@51 { | ||
117 | compatible = "at24,24c256"; | ||
118 | reg = <0x51>; | ||
119 | }; | ||
120 | eeprom@53 { | ||
121 | compatible = "at24,24c256"; | ||
122 | reg = <0x53>; | ||
123 | }; | ||
124 | rtc@68 { | ||
125 | compatible = "dallas,ds3232"; | ||
126 | reg = <0x68>; | ||
127 | interrupts = <0x1 0x1 0 0>; | ||
128 | }; | ||
129 | }; | ||
130 | |||
131 | usb0: usb@210000 { | ||
132 | phy_type = "ulpi"; | ||
133 | }; | ||
134 | |||
135 | usb1: usb@211000 { | ||
136 | dr_mode = "host"; | ||
137 | phy_type = "ulpi"; | ||
138 | }; | ||
139 | }; | ||
140 | |||
141 | rapidio@ffe0c0000 { | ||
142 | reg = <0xf 0xfe0c0000 0 0x11000>; | ||
143 | |||
144 | port1 { | ||
145 | ranges = <0 0 0xc 0x20000000 0 0x10000000>; | ||
146 | }; | ||
147 | port2 { | ||
148 | ranges = <0 0 0xc 0x30000000 0 0x10000000>; | ||
149 | }; | ||
150 | }; | ||
151 | |||
152 | localbus@ffe124000 { | ||
153 | reg = <0xf 0xfe124000 0 0x1000>; | ||
154 | ranges = <0 0 0xf 0xe8000000 0x08000000 | ||
155 | 2 0 0xf 0xffa00000 0x00040000 | ||
156 | 3 0 0xf 0xffdf0000 0x00008000>; | ||
157 | |||
158 | flash@0,0 { | ||
159 | compatible = "cfi-flash"; | ||
160 | reg = <0 0 0x08000000>; | ||
161 | bank-width = <2>; | ||
162 | device-width = <2>; | ||
163 | }; | ||
164 | |||
165 | nand@2,0 { | ||
166 | #address-cells = <1>; | ||
167 | #size-cells = <1>; | ||
168 | compatible = "fsl,elbc-fcm-nand"; | ||
169 | reg = <0x2 0x0 0x40000>; | ||
170 | |||
171 | partition@0 { | ||
172 | label = "NAND U-Boot Image"; | ||
173 | reg = <0x0 0x02000000>; | ||
174 | read-only; | ||
175 | }; | ||
176 | |||
177 | partition@2000000 { | ||
178 | label = "NAND Root File System"; | ||
179 | reg = <0x02000000 0x10000000>; | ||
180 | }; | ||
181 | |||
182 | partition@12000000 { | ||
183 | label = "NAND Compressed RFS Image"; | ||
184 | reg = <0x12000000 0x08000000>; | ||
185 | }; | ||
186 | |||
187 | partition@1a000000 { | ||
188 | label = "NAND Linux Kernel Image"; | ||
189 | reg = <0x1a000000 0x04000000>; | ||
190 | }; | ||
191 | |||
192 | partition@1e000000 { | ||
193 | label = "NAND DTB Image"; | ||
194 | reg = <0x1e000000 0x01000000>; | ||
195 | }; | ||
196 | |||
197 | partition@1f000000 { | ||
198 | label = "NAND Writable User area"; | ||
199 | reg = <0x1f000000 0x21000000>; | ||
200 | }; | ||
201 | }; | ||
202 | |||
203 | board-control@3,0 { | ||
204 | compatible = "fsl,p3060qds-fpga", "fsl,fpga-qixis"; | ||
205 | reg = <3 0 0x100>; | ||
206 | }; | ||
207 | }; | ||
208 | |||
209 | pci0: pcie@ffe200000 { | ||
210 | reg = <0xf 0xfe200000 0 0x1000>; | ||
211 | ranges = <0x02000000 0 0xe0000000 0xc 0x00000000 0x0 0x20000000 | ||
212 | 0x01000000 0 0x00000000 0xf 0xf8000000 0x0 0x00010000>; | ||
213 | pcie@0 { | ||
214 | ranges = <0x02000000 0 0xe0000000 | ||
215 | 0x02000000 0 0xe0000000 | ||
216 | 0 0x20000000 | ||
217 | |||
218 | 0x01000000 0 0x00000000 | ||
219 | 0x01000000 0 0x00000000 | ||
220 | 0 0x00010000>; | ||
221 | }; | ||
222 | }; | ||
223 | |||
224 | pci1: pcie@ffe201000 { | ||
225 | reg = <0xf 0xfe201000 0 0x1000>; | ||
226 | ranges = <0x02000000 0x0 0xe0000000 0xc 0x20000000 0x0 0x20000000 | ||
227 | 0x01000000 0x0 0x00000000 0xf 0xf8010000 0x0 0x00010000>; | ||
228 | pcie@0 { | ||
229 | ranges = <0x02000000 0 0xe0000000 | ||
230 | 0x02000000 0 0xe0000000 | ||
231 | 0 0x20000000 | ||
232 | |||
233 | 0x01000000 0 0x00000000 | ||
234 | 0x01000000 0 0x00000000 | ||
235 | 0 0x00010000>; | ||
236 | }; | ||
237 | }; | ||
238 | }; | ||
diff --git a/arch/powerpc/boot/dts/p3060si.dtsi b/arch/powerpc/boot/dts/p3060si.dtsi new file mode 100644 index 000000000000..68947e157bbc --- /dev/null +++ b/arch/powerpc/boot/dts/p3060si.dtsi | |||
@@ -0,0 +1,719 @@ | |||
1 | /* | ||
2 | * P3060 Silicon Device Tree Source | ||
3 | * | ||
4 | * Copyright 2011 Freescale Semiconductor Inc. | ||
5 | * | ||
6 | * Redistribution and use in source and binary forms, with or without | ||
7 | * modification, are permitted provided that the following conditions are met: | ||
8 | * * Redistributions of source code must retain the above copyright | ||
9 | * notice, this list of conditions and the following disclaimer. | ||
10 | * * Redistributions in binary form must reproduce the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer in the | ||
12 | * documentation and/or other materials provided with the distribution. | ||
13 | * * Neither the name of Freescale Semiconductor nor the | ||
14 | * names of its contributors may be used to endorse or promote products | ||
15 | * derived from this software without specific prior written permission. | ||
16 | * | ||
17 | * | ||
18 | * ALTERNATIVELY, this software may be distributed under the terms of the | ||
19 | * GNU General Public License ("GPL") as published by the Free Software | ||
20 | * Foundation, either version 2 of that License or (at your option) any | ||
21 | * later version. | ||
22 | * | ||
23 | * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY | ||
24 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
25 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
26 | * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY | ||
27 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
28 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
29 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
30 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
31 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
32 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
33 | */ | ||
34 | |||
35 | /dts-v1/; | ||
36 | |||
37 | / { | ||
38 | compatible = "fsl,P3060"; | ||
39 | #address-cells = <2>; | ||
40 | #size-cells = <2>; | ||
41 | interrupt-parent = <&mpic>; | ||
42 | |||
43 | aliases { | ||
44 | ccsr = &soc; | ||
45 | dcsr = &dcsr; | ||
46 | |||
47 | serial0 = &serial0; | ||
48 | serial1 = &serial1; | ||
49 | serial2 = &serial2; | ||
50 | serial3 = &serial3; | ||
51 | pci0 = &pci0; | ||
52 | pci1 = &pci1; | ||
53 | usb0 = &usb0; | ||
54 | usb1 = &usb1; | ||
55 | dma0 = &dma0; | ||
56 | dma1 = &dma1; | ||
57 | msi0 = &msi0; | ||
58 | msi1 = &msi1; | ||
59 | msi2 = &msi2; | ||
60 | |||
61 | crypto = &crypto; | ||
62 | sec_jr0 = &sec_jr0; | ||
63 | sec_jr1 = &sec_jr1; | ||
64 | sec_jr2 = &sec_jr2; | ||
65 | sec_jr3 = &sec_jr3; | ||
66 | rtic_a = &rtic_a; | ||
67 | rtic_b = &rtic_b; | ||
68 | rtic_c = &rtic_c; | ||
69 | rtic_d = &rtic_d; | ||
70 | sec_mon = &sec_mon; | ||
71 | }; | ||
72 | |||
73 | cpus { | ||
74 | #address-cells = <1>; | ||
75 | #size-cells = <0>; | ||
76 | |||
77 | cpu0: PowerPC,e500mc@0 { | ||
78 | device_type = "cpu"; | ||
79 | reg = <0>; | ||
80 | next-level-cache = <&L2_0>; | ||
81 | L2_0: l2-cache { | ||
82 | next-level-cache = <&cpc>; | ||
83 | }; | ||
84 | }; | ||
85 | cpu1: PowerPC,e500mc@1 { | ||
86 | device_type = "cpu"; | ||
87 | reg = <1>; | ||
88 | next-level-cache = <&L2_1>; | ||
89 | L2_1: l2-cache { | ||
90 | next-level-cache = <&cpc>; | ||
91 | }; | ||
92 | }; | ||
93 | cpu4: PowerPC,e500mc@4 { | ||
94 | device_type = "cpu"; | ||
95 | reg = <4>; | ||
96 | next-level-cache = <&L2_4>; | ||
97 | L2_4: l2-cache { | ||
98 | next-level-cache = <&cpc>; | ||
99 | }; | ||
100 | }; | ||
101 | cpu5: PowerPC,e500mc@5 { | ||
102 | device_type = "cpu"; | ||
103 | reg = <5>; | ||
104 | next-level-cache = <&L2_5>; | ||
105 | L2_5: l2-cache { | ||
106 | next-level-cache = <&cpc>; | ||
107 | }; | ||
108 | }; | ||
109 | cpu6: PowerPC,e500mc@6 { | ||
110 | device_type = "cpu"; | ||
111 | reg = <6>; | ||
112 | next-level-cache = <&L2_6>; | ||
113 | L2_6: l2-cache { | ||
114 | next-level-cache = <&cpc>; | ||
115 | }; | ||
116 | }; | ||
117 | cpu7: PowerPC,e500mc@7 { | ||
118 | device_type = "cpu"; | ||
119 | reg = <7>; | ||
120 | next-level-cache = <&L2_7>; | ||
121 | L2_7: l2-cache { | ||
122 | next-level-cache = <&cpc>; | ||
123 | }; | ||
124 | }; | ||
125 | }; | ||
126 | |||
127 | dcsr: dcsr@f00000000 { | ||
128 | #address-cells = <1>; | ||
129 | #size-cells = <1>; | ||
130 | compatible = "fsl,dcsr", "simple-bus"; | ||
131 | |||
132 | dcsr-epu@0 { | ||
133 | compatible = "fsl,dcsr-epu"; | ||
134 | interrupts = <52 2 0 0 | ||
135 | 84 2 0 0 | ||
136 | 85 2 0 0>; | ||
137 | interrupt-parent = <&mpic>; | ||
138 | reg = <0x0 0x1000>; | ||
139 | }; | ||
140 | dcsr-npc { | ||
141 | compatible = "fsl,dcsr-npc"; | ||
142 | reg = <0x1000 0x1000 0x1000000 0x8000>; | ||
143 | }; | ||
144 | dcsr-nxc@2000 { | ||
145 | compatible = "fsl,dcsr-nxc"; | ||
146 | reg = <0x2000 0x1000>; | ||
147 | }; | ||
148 | dcsr-corenet { | ||
149 | compatible = "fsl,dcsr-corenet"; | ||
150 | reg = <0x8000 0x1000 0xB0000 0x1000>; | ||
151 | }; | ||
152 | dcsr-dpaa@9000 { | ||
153 | compatible = "fsl,p3060-dcsr-dpaa", "fsl,dcsr-dpaa"; | ||
154 | reg = <0x9000 0x1000>; | ||
155 | }; | ||
156 | dcsr-ocn@11000 { | ||
157 | compatible = "fsl,p3060-dcsr-ocn", "fsl,dcsr-ocn"; | ||
158 | reg = <0x11000 0x1000>; | ||
159 | }; | ||
160 | dcsr-ddr@12000 { | ||
161 | compatible = "fsl,dcsr-ddr"; | ||
162 | dev-handle = <&ddr>; | ||
163 | reg = <0x12000 0x1000>; | ||
164 | }; | ||
165 | dcsr-nal@18000 { | ||
166 | compatible = "fsl,p3060-dcsr-nal", "fsl,dcsr-nal"; | ||
167 | reg = <0x18000 0x1000>; | ||
168 | }; | ||
169 | dcsr-rcpm@22000 { | ||
170 | compatible = "fsl,p3060-dcsr-rcpm", "fsl,dcsr-rcpm"; | ||
171 | reg = <0x22000 0x1000>; | ||
172 | }; | ||
173 | dcsr-cpu-sb-proxy@40000 { | ||
174 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
175 | cpu-handle = <&cpu0>; | ||
176 | reg = <0x40000 0x1000>; | ||
177 | }; | ||
178 | dcsr-cpu-sb-proxy@41000 { | ||
179 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
180 | cpu-handle = <&cpu1>; | ||
181 | reg = <0x41000 0x1000>; | ||
182 | }; | ||
183 | dcsr-cpu-sb-proxy@44000 { | ||
184 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
185 | cpu-handle = <&cpu4>; | ||
186 | reg = <0x44000 0x1000>; | ||
187 | }; | ||
188 | dcsr-cpu-sb-proxy@45000 { | ||
189 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
190 | cpu-handle = <&cpu5>; | ||
191 | reg = <0x45000 0x1000>; | ||
192 | }; | ||
193 | dcsr-cpu-sb-proxy@46000 { | ||
194 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
195 | cpu-handle = <&cpu6>; | ||
196 | reg = <0x46000 0x1000>; | ||
197 | }; | ||
198 | dcsr-cpu-sb-proxy@47000 { | ||
199 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
200 | cpu-handle = <&cpu7>; | ||
201 | reg = <0x47000 0x1000>; | ||
202 | }; | ||
203 | }; | ||
204 | |||
205 | soc: soc@ffe000000 { | ||
206 | #address-cells = <1>; | ||
207 | #size-cells = <1>; | ||
208 | device_type = "soc"; | ||
209 | compatible = "simple-bus"; | ||
210 | ranges = <0x00000000 0xf 0xfe000000 0x1000000>; | ||
211 | reg = <0xf 0xfe000000 0 0x00001000>; | ||
212 | |||
213 | soc-sram-error { | ||
214 | compatible = "fsl,soc-sram-error"; | ||
215 | interrupts = <16 2 1 29>; | ||
216 | }; | ||
217 | |||
218 | corenet-law@0 { | ||
219 | compatible = "fsl,corenet-law"; | ||
220 | reg = <0x0 0x1000>; | ||
221 | fsl,num-laws = <32>; | ||
222 | }; | ||
223 | |||
224 | ddr: memory-controller@8000 { | ||
225 | compatible = "fsl,qoriq-memory-controller-v4.4", "fsl,qoriq-memory-controller"; | ||
226 | reg = <0x8000 0x1000>; | ||
227 | interrupts = <16 2 1 23>; | ||
228 | }; | ||
229 | |||
230 | cpc: l3-cache-controller@10000 { | ||
231 | compatible = "fsl,p3060-l3-cache-controller", "cache"; | ||
232 | reg = <0x10000 0x1000 | ||
233 | 0x11000 0x1000>; | ||
234 | interrupts = <16 2 1 27>; | ||
235 | }; | ||
236 | |||
237 | corenet-cf@18000 { | ||
238 | compatible = "fsl,corenet-cf"; | ||
239 | reg = <0x18000 0x1000>; | ||
240 | interrupts = <16 2 1 31>; | ||
241 | fsl,ccf-num-csdids = <32>; | ||
242 | fsl,ccf-num-snoopids = <32>; | ||
243 | }; | ||
244 | |||
245 | iommu@20000 { | ||
246 | compatible = "fsl,pamu-v1.0", "fsl,pamu"; | ||
247 | reg = <0x20000 0x5000>; | ||
248 | interrupts = < | ||
249 | 24 2 0 0 | ||
250 | 16 2 1 30>; | ||
251 | }; | ||
252 | |||
253 | mpic: pic@40000 { | ||
254 | clock-frequency = <0>; | ||
255 | interrupt-controller; | ||
256 | #address-cells = <0>; | ||
257 | #interrupt-cells = <4>; | ||
258 | reg = <0x40000 0x40000>; | ||
259 | compatible = "fsl,mpic", "chrp,open-pic"; | ||
260 | device_type = "open-pic"; | ||
261 | }; | ||
262 | |||
263 | msi0: msi@41600 { | ||
264 | compatible = "fsl,mpic-msi"; | ||
265 | reg = <0x41600 0x200>; | ||
266 | msi-available-ranges = <0 0x100>; | ||
267 | interrupts = < | ||
268 | 0xe0 0 0 0 | ||
269 | 0xe1 0 0 0 | ||
270 | 0xe2 0 0 0 | ||
271 | 0xe3 0 0 0 | ||
272 | 0xe4 0 0 0 | ||
273 | 0xe5 0 0 0 | ||
274 | 0xe6 0 0 0 | ||
275 | 0xe7 0 0 0>; | ||
276 | }; | ||
277 | |||
278 | msi1: msi@41800 { | ||
279 | compatible = "fsl,mpic-msi"; | ||
280 | reg = <0x41800 0x200>; | ||
281 | msi-available-ranges = <0 0x100>; | ||
282 | interrupts = < | ||
283 | 0xe8 0 0 0 | ||
284 | 0xe9 0 0 0 | ||
285 | 0xea 0 0 0 | ||
286 | 0xeb 0 0 0 | ||
287 | 0xec 0 0 0 | ||
288 | 0xed 0 0 0 | ||
289 | 0xee 0 0 0 | ||
290 | 0xef 0 0 0>; | ||
291 | }; | ||
292 | |||
293 | msi2: msi@41a00 { | ||
294 | compatible = "fsl,mpic-msi"; | ||
295 | reg = <0x41a00 0x200>; | ||
296 | msi-available-ranges = <0 0x100>; | ||
297 | interrupts = < | ||
298 | 0xf0 0 0 0 | ||
299 | 0xf1 0 0 0 | ||
300 | 0xf2 0 0 0 | ||
301 | 0xf3 0 0 0 | ||
302 | 0xf4 0 0 0 | ||
303 | 0xf5 0 0 0 | ||
304 | 0xf6 0 0 0 | ||
305 | 0xf7 0 0 0>; | ||
306 | }; | ||
307 | |||
308 | rmu: rmu@d3000 { | ||
309 | #address-cells = <1>; | ||
310 | #size-cells = <1>; | ||
311 | compatible = "fsl,srio-rmu"; | ||
312 | reg = <0xd3000 0x500>; | ||
313 | ranges = <0x0 0xd3000 0x500>; | ||
314 | |||
315 | message-unit@0 { | ||
316 | compatible = "fsl,srio-msg-unit"; | ||
317 | reg = <0x0 0x100>; | ||
318 | interrupts = < | ||
319 | 60 2 0 0 /* msg1_tx_irq */ | ||
320 | 61 2 0 0>;/* msg1_rx_irq */ | ||
321 | }; | ||
322 | message-unit@100 { | ||
323 | compatible = "fsl,srio-msg-unit"; | ||
324 | reg = <0x100 0x100>; | ||
325 | interrupts = < | ||
326 | 62 2 0 0 /* msg2_tx_irq */ | ||
327 | 63 2 0 0>;/* msg2_rx_irq */ | ||
328 | }; | ||
329 | doorbell-unit@400 { | ||
330 | compatible = "fsl,srio-dbell-unit"; | ||
331 | reg = <0x400 0x80>; | ||
332 | interrupts = < | ||
333 | 56 2 0 0 /* bell_outb_irq */ | ||
334 | 57 2 0 0>;/* bell_inb_irq */ | ||
335 | }; | ||
336 | port-write-unit@4e0 { | ||
337 | compatible = "fsl,srio-port-write-unit"; | ||
338 | reg = <0x4e0 0x20>; | ||
339 | interrupts = <16 2 1 11>; | ||
340 | }; | ||
341 | }; | ||
342 | |||
343 | guts: global-utilities@e0000 { | ||
344 | compatible = "fsl,qoriq-device-config-1.0"; | ||
345 | reg = <0xe0000 0xe00>; | ||
346 | fsl,has-rstcr; | ||
347 | #sleep-cells = <1>; | ||
348 | fsl,liodn-bits = <12>; | ||
349 | }; | ||
350 | |||
351 | pins: global-utilities@e0e00 { | ||
352 | compatible = "fsl,qoriq-pin-control-1.0"; | ||
353 | reg = <0xe0e00 0x200>; | ||
354 | #sleep-cells = <2>; | ||
355 | }; | ||
356 | |||
357 | clockgen: global-utilities@e1000 { | ||
358 | compatible = "fsl,p3060-clockgen", "fsl,qoriq-clockgen-1.0"; | ||
359 | reg = <0xe1000 0x1000>; | ||
360 | clock-frequency = <0>; | ||
361 | }; | ||
362 | |||
363 | rcpm: global-utilities@e2000 { | ||
364 | compatible = "fsl,qoriq-rcpm-1.0"; | ||
365 | reg = <0xe2000 0x1000>; | ||
366 | #sleep-cells = <1>; | ||
367 | }; | ||
368 | |||
369 | sfp: sfp@e8000 { | ||
370 | compatible = "fsl,p3060-sfp", "fsl,qoriq-sfp-1.0"; | ||
371 | reg = <0xe8000 0x1000>; | ||
372 | }; | ||
373 | |||
374 | serdes: serdes@ea000 { | ||
375 | compatible = "fsl,p3060-serdes"; | ||
376 | reg = <0xea000 0x1000>; | ||
377 | }; | ||
378 | |||
379 | dma0: dma@100300 { | ||
380 | #address-cells = <1>; | ||
381 | #size-cells = <1>; | ||
382 | compatible = "fsl,p3060-dma", "fsl,eloplus-dma"; | ||
383 | reg = <0x100300 0x4>; | ||
384 | ranges = <0x0 0x100100 0x200>; | ||
385 | cell-index = <0>; | ||
386 | dma-channel@0 { | ||
387 | compatible = "fsl,p3060-dma-channel", | ||
388 | "fsl,eloplus-dma-channel"; | ||
389 | reg = <0x0 0x80>; | ||
390 | cell-index = <0>; | ||
391 | interrupts = <28 2 0 0>; | ||
392 | }; | ||
393 | dma-channel@80 { | ||
394 | compatible = "fsl,p3060-dma-channel", | ||
395 | "fsl,eloplus-dma-channel"; | ||
396 | reg = <0x80 0x80>; | ||
397 | cell-index = <1>; | ||
398 | interrupts = <29 2 0 0>; | ||
399 | }; | ||
400 | dma-channel@100 { | ||
401 | compatible = "fsl,p3060-dma-channel", | ||
402 | "fsl,eloplus-dma-channel"; | ||
403 | reg = <0x100 0x80>; | ||
404 | cell-index = <2>; | ||
405 | interrupts = <30 2 0 0>; | ||
406 | }; | ||
407 | dma-channel@180 { | ||
408 | compatible = "fsl,p3060-dma-channel", | ||
409 | "fsl,eloplus-dma-channel"; | ||
410 | reg = <0x180 0x80>; | ||
411 | cell-index = <3>; | ||
412 | interrupts = <31 2 0 0>; | ||
413 | }; | ||
414 | }; | ||
415 | |||
416 | dma1: dma@101300 { | ||
417 | #address-cells = <1>; | ||
418 | #size-cells = <1>; | ||
419 | compatible = "fsl,p3060-dma", "fsl,eloplus-dma"; | ||
420 | reg = <0x101300 0x4>; | ||
421 | ranges = <0x0 0x101100 0x200>; | ||
422 | cell-index = <1>; | ||
423 | dma-channel@0 { | ||
424 | compatible = "fsl,p3060-dma-channel", | ||
425 | "fsl,eloplus-dma-channel"; | ||
426 | reg = <0x0 0x80>; | ||
427 | cell-index = <0>; | ||
428 | interrupts = <32 2 0 0>; | ||
429 | }; | ||
430 | dma-channel@80 { | ||
431 | compatible = "fsl,p3060-dma-channel", | ||
432 | "fsl,eloplus-dma-channel"; | ||
433 | reg = <0x80 0x80>; | ||
434 | cell-index = <1>; | ||
435 | interrupts = <33 2 0 0>; | ||
436 | }; | ||
437 | dma-channel@100 { | ||
438 | compatible = "fsl,p3060-dma-channel", | ||
439 | "fsl,eloplus-dma-channel"; | ||
440 | reg = <0x100 0x80>; | ||
441 | cell-index = <2>; | ||
442 | interrupts = <34 2 0 0>; | ||
443 | }; | ||
444 | dma-channel@180 { | ||
445 | compatible = "fsl,p3060-dma-channel", | ||
446 | "fsl,eloplus-dma-channel"; | ||
447 | reg = <0x180 0x80>; | ||
448 | cell-index = <3>; | ||
449 | interrupts = <35 2 0 0>; | ||
450 | }; | ||
451 | }; | ||
452 | |||
453 | spi@110000 { | ||
454 | #address-cells = <1>; | ||
455 | #size-cells = <0>; | ||
456 | compatible = "fsl,p3060-espi", "fsl,mpc8536-espi"; | ||
457 | reg = <0x110000 0x1000>; | ||
458 | interrupts = <53 0x2 0 0>; | ||
459 | fsl,espi-num-chipselects = <4>; | ||
460 | }; | ||
461 | |||
462 | i2c@118000 { | ||
463 | #address-cells = <1>; | ||
464 | #size-cells = <0>; | ||
465 | cell-index = <0>; | ||
466 | compatible = "fsl-i2c"; | ||
467 | reg = <0x118000 0x100>; | ||
468 | interrupts = <38 2 0 0>; | ||
469 | dfsrr; | ||
470 | }; | ||
471 | |||
472 | i2c@118100 { | ||
473 | #address-cells = <1>; | ||
474 | #size-cells = <0>; | ||
475 | cell-index = <1>; | ||
476 | compatible = "fsl-i2c"; | ||
477 | reg = <0x118100 0x100>; | ||
478 | interrupts = <38 2 0 0>; | ||
479 | dfsrr; | ||
480 | }; | ||
481 | |||
482 | i2c@119000 { | ||
483 | #address-cells = <1>; | ||
484 | #size-cells = <0>; | ||
485 | cell-index = <2>; | ||
486 | compatible = "fsl-i2c"; | ||
487 | reg = <0x119000 0x100>; | ||
488 | interrupts = <39 2 0 0>; | ||
489 | dfsrr; | ||
490 | }; | ||
491 | |||
492 | i2c@119100 { | ||
493 | #address-cells = <1>; | ||
494 | #size-cells = <0>; | ||
495 | cell-index = <3>; | ||
496 | compatible = "fsl-i2c"; | ||
497 | reg = <0x119100 0x100>; | ||
498 | interrupts = <39 2 0 0>; | ||
499 | dfsrr; | ||
500 | }; | ||
501 | |||
502 | serial0: serial@11c500 { | ||
503 | cell-index = <0>; | ||
504 | device_type = "serial"; | ||
505 | compatible = "ns16550"; | ||
506 | reg = <0x11c500 0x100>; | ||
507 | clock-frequency = <0>; | ||
508 | interrupts = <36 2 0 0>; | ||
509 | }; | ||
510 | |||
511 | serial1: serial@11c600 { | ||
512 | cell-index = <1>; | ||
513 | device_type = "serial"; | ||
514 | compatible = "ns16550"; | ||
515 | reg = <0x11c600 0x100>; | ||
516 | clock-frequency = <0>; | ||
517 | interrupts = <36 2 0 0>; | ||
518 | }; | ||
519 | |||
520 | serial2: serial@11d500 { | ||
521 | cell-index = <2>; | ||
522 | device_type = "serial"; | ||
523 | compatible = "ns16550"; | ||
524 | reg = <0x11d500 0x100>; | ||
525 | clock-frequency = <0>; | ||
526 | interrupts = <37 2 0 0>; | ||
527 | }; | ||
528 | |||
529 | serial3: serial@11d600 { | ||
530 | cell-index = <3>; | ||
531 | device_type = "serial"; | ||
532 | compatible = "ns16550"; | ||
533 | reg = <0x11d600 0x100>; | ||
534 | clock-frequency = <0>; | ||
535 | interrupts = <37 2 0 0>; | ||
536 | }; | ||
537 | |||
538 | gpio0: gpio@130000 { | ||
539 | compatible = "fsl,p3060-gpio", "fsl,qoriq-gpio"; | ||
540 | reg = <0x130000 0x1000>; | ||
541 | interrupts = <55 2 0 0>; | ||
542 | #gpio-cells = <2>; | ||
543 | gpio-controller; | ||
544 | }; | ||
545 | |||
546 | usb0: usb@210000 { | ||
547 | compatible = "fsl,p3060-usb2-mph", | ||
548 | "fsl,mpc85xx-usb2-mph", "fsl-usb2-mph"; | ||
549 | reg = <0x210000 0x1000>; | ||
550 | #address-cells = <1>; | ||
551 | #size-cells = <0>; | ||
552 | interrupts = <44 0x2 0 0>; | ||
553 | }; | ||
554 | |||
555 | usb1: usb@211000 { | ||
556 | compatible = "fsl,p3060-usb2-dr", | ||
557 | "fsl,mpc85xx-usb2-dr", "fsl-usb2-dr"; | ||
558 | reg = <0x211000 0x1000>; | ||
559 | #address-cells = <1>; | ||
560 | #size-cells = <0>; | ||
561 | interrupts = <45 0x2 0 0>; | ||
562 | }; | ||
563 | |||
564 | crypto: crypto@300000 { | ||
565 | compatible = "fsl,sec-v4.1", "fsl,sec-v4.0"; | ||
566 | #address-cells = <1>; | ||
567 | #size-cells = <1>; | ||
568 | reg = <0x300000 0x10000>; | ||
569 | ranges = <0 0x300000 0x10000>; | ||
570 | interrupt-parent = <&mpic>; | ||
571 | interrupts = <92 2 0 0>; | ||
572 | |||
573 | sec_jr0: jr@1000 { | ||
574 | compatible = "fsl,sec-v4.1-job-ring", "fsl,sec-v4.0-job-ring"; | ||
575 | reg = <0x1000 0x1000>; | ||
576 | interrupt-parent = <&mpic>; | ||
577 | interrupts = <88 2 0 0>; | ||
578 | }; | ||
579 | |||
580 | sec_jr1: jr@2000 { | ||
581 | compatible = "fsl,sec-v4.1-job-ring", "fsl,sec-v4.0-job-ring"; | ||
582 | reg = <0x2000 0x1000>; | ||
583 | interrupt-parent = <&mpic>; | ||
584 | interrupts = <89 2 0 0>; | ||
585 | }; | ||
586 | |||
587 | sec_jr2: jr@3000 { | ||
588 | compatible = "fsl,sec-v4.1-job-ring", "fsl,sec-v4.0-job-ring"; | ||
589 | reg = <0x3000 0x1000>; | ||
590 | interrupt-parent = <&mpic>; | ||
591 | interrupts = <90 2 0 0>; | ||
592 | }; | ||
593 | |||
594 | sec_jr3: jr@4000 { | ||
595 | compatible = "fsl,sec-v4.1-job-ring", "fsl,sec-v4.0-job-ring"; | ||
596 | reg = <0x4000 0x1000>; | ||
597 | interrupt-parent = <&mpic>; | ||
598 | interrupts = <91 2 0 0>; | ||
599 | }; | ||
600 | |||
601 | rtic@6000 { | ||
602 | compatible = "fsl,sec-v4.1-rtic", "fsl,sec-v4.0-rtic"; | ||
603 | #address-cells = <1>; | ||
604 | #size-cells = <1>; | ||
605 | reg = <0x6000 0x100>; | ||
606 | ranges = <0x0 0x6100 0xe00>; | ||
607 | |||
608 | rtic_a: rtic-a@0 { | ||
609 | compatible = "fsl,sec-v4.1-rtic-memory", "fsl,sec-v4.0-rtic-memory"; | ||
610 | reg = <0x00 0x20 0x100 0x80>; | ||
611 | }; | ||
612 | |||
613 | rtic_b: rtic-b@20 { | ||
614 | compatible = "fsl,sec-v4.1-rtic-memory", "fsl,sec-v4.0-rtic-memory"; | ||
615 | reg = <0x20 0x20 0x200 0x80>; | ||
616 | }; | ||
617 | |||
618 | rtic_c: rtic-c@40 { | ||
619 | compatible = "fsl,sec-v4.1-rtic-memory", "fsl,sec-v4.0-rtic-memory"; | ||
620 | reg = <0x40 0x20 0x300 0x80>; | ||
621 | }; | ||
622 | |||
623 | rtic_d: rtic-d@60 { | ||
624 | compatible = "fsl,sec-v4.1-rtic-memory", "fsl,sec-v4.0-rtic-memory"; | ||
625 | reg = <0x60 0x20 0x500 0x80>; | ||
626 | }; | ||
627 | }; | ||
628 | }; | ||
629 | |||
630 | sec_mon: sec_mon@314000 { | ||
631 | compatible = "fsl,sec-v4.1-mon", "fsl,sec-v4.0-mon"; | ||
632 | reg = <0x314000 0x1000>; | ||
633 | interrupt-parent = <&mpic>; | ||
634 | interrupts = <93 2 0 0>; | ||
635 | }; | ||
636 | }; | ||
637 | |||
638 | rapidio@ffe0c0000 { | ||
639 | compatible = "fsl,srio"; | ||
640 | interrupts = <16 2 1 11>; | ||
641 | #address-cells = <2>; | ||
642 | #size-cells = <2>; | ||
643 | fsl,srio-rmu-handle = <&rmu>; | ||
644 | ranges; | ||
645 | |||
646 | port1 { | ||
647 | #address-cells = <2>; | ||
648 | #size-cells = <2>; | ||
649 | cell-index = <1>; | ||
650 | }; | ||
651 | |||
652 | port2 { | ||
653 | #address-cells = <2>; | ||
654 | #size-cells = <2>; | ||
655 | cell-index = <2>; | ||
656 | }; | ||
657 | }; | ||
658 | |||
659 | localbus@ffe124000 { | ||
660 | compatible = "fsl,p3060-elbc", "fsl,elbc", "simple-bus"; | ||
661 | interrupts = <25 2 0 0>; | ||
662 | #address-cells = <2>; | ||
663 | #size-cells = <1>; | ||
664 | }; | ||
665 | |||
666 | pci0: pcie@ffe200000 { | ||
667 | compatible = "fsl,p3060-pcie", "fsl,qoriq-pcie-v2.2"; | ||
668 | device_type = "pci"; | ||
669 | #size-cells = <2>; | ||
670 | #address-cells = <3>; | ||
671 | bus-range = <0x0 0xff>; | ||
672 | clock-frequency = <33333333>; | ||
673 | fsl,msi = <&msi0>; | ||
674 | interrupts = <16 2 1 15>; | ||
675 | pcie@0 { | ||
676 | reg = <0 0 0 0 0>; | ||
677 | #interrupt-cells = <1>; | ||
678 | #size-cells = <2>; | ||
679 | #address-cells = <3>; | ||
680 | device_type = "pci"; | ||
681 | interrupts = <16 2 1 15>; | ||
682 | interrupt-map-mask = <0xf800 0 0 7>; | ||
683 | interrupt-map = < | ||
684 | /* IDSEL 0x0 */ | ||
685 | 0000 0 0 1 &mpic 40 1 0 0 | ||
686 | 0000 0 0 2 &mpic 1 1 0 0 | ||
687 | 0000 0 0 3 &mpic 2 1 0 0 | ||
688 | 0000 0 0 4 &mpic 3 1 0 0 | ||
689 | >; | ||
690 | }; | ||
691 | }; | ||
692 | |||
693 | pci1: pcie@ffe201000 { | ||
694 | compatible = "fsl,p3060-pcie", "fsl,qoriq-pcie-v2.2"; | ||
695 | device_type = "pci"; | ||
696 | #size-cells = <2>; | ||
697 | #address-cells = <3>; | ||
698 | bus-range = <0 0xff>; | ||
699 | clock-frequency = <33333333>; | ||
700 | fsl,msi = <&msi1>; | ||
701 | interrupts = <16 2 1 14>; | ||
702 | pcie@0 { | ||
703 | reg = <0 0 0 0 0>; | ||
704 | #interrupt-cells = <1>; | ||
705 | #size-cells = <2>; | ||
706 | #address-cells = <3>; | ||
707 | device_type = "pci"; | ||
708 | interrupts = <16 2 1 14>; | ||
709 | interrupt-map-mask = <0xf800 0 0 7>; | ||
710 | interrupt-map = < | ||
711 | /* IDSEL 0x0 */ | ||
712 | 0000 0 0 1 &mpic 41 1 0 0 | ||
713 | 0000 0 0 2 &mpic 5 1 0 0 | ||
714 | 0000 0 0 3 &mpic 6 1 0 0 | ||
715 | 0000 0 0 4 &mpic 7 1 0 0 | ||
716 | >; | ||
717 | }; | ||
718 | }; | ||
719 | }; | ||
diff --git a/arch/powerpc/boot/dts/p4080ds.dts b/arch/powerpc/boot/dts/p4080ds.dts index eb11098bb687..c7916dc28014 100644 --- a/arch/powerpc/boot/dts/p4080ds.dts +++ b/arch/powerpc/boot/dts/p4080ds.dts | |||
@@ -45,6 +45,10 @@ | |||
45 | device_type = "memory"; | 45 | device_type = "memory"; |
46 | }; | 46 | }; |
47 | 47 | ||
48 | dcsr: dcsr@f00000000 { | ||
49 | ranges = <0x00000000 0xf 0x00000000 0x01008000>; | ||
50 | }; | ||
51 | |||
48 | soc: soc@ffe000000 { | 52 | soc: soc@ffe000000 { |
49 | spi@110000 { | 53 | spi@110000 { |
50 | flash@0 { | 54 | flash@0 { |
@@ -108,7 +112,8 @@ | |||
108 | 112 | ||
109 | localbus@ffe124000 { | 113 | localbus@ffe124000 { |
110 | reg = <0xf 0xfe124000 0 0x1000>; | 114 | reg = <0xf 0xfe124000 0 0x1000>; |
111 | ranges = <0 0 0xf 0xe8000000 0x08000000>; | 115 | ranges = <0 0 0xf 0xe8000000 0x08000000 |
116 | 3 0 0xf 0xffdf0000 0x00008000>; | ||
112 | 117 | ||
113 | flash@0,0 { | 118 | flash@0,0 { |
114 | compatible = "cfi-flash"; | 119 | compatible = "cfi-flash"; |
@@ -116,6 +121,11 @@ | |||
116 | bank-width = <2>; | 121 | bank-width = <2>; |
117 | device-width = <2>; | 122 | device-width = <2>; |
118 | }; | 123 | }; |
124 | |||
125 | board-control@3,0 { | ||
126 | compatible = "fsl,p4080ds-fpga", "fsl,fpga-ngpixis"; | ||
127 | reg = <3 0 0x30>; | ||
128 | }; | ||
119 | }; | 129 | }; |
120 | 130 | ||
121 | pci0: pcie@ffe200000 { | 131 | pci0: pcie@ffe200000 { |
diff --git a/arch/powerpc/boot/dts/p4080si.dtsi b/arch/powerpc/boot/dts/p4080si.dtsi index b71051f506c1..f20c01ab2473 100644 --- a/arch/powerpc/boot/dts/p4080si.dtsi +++ b/arch/powerpc/boot/dts/p4080si.dtsi | |||
@@ -42,6 +42,7 @@ | |||
42 | 42 | ||
43 | aliases { | 43 | aliases { |
44 | ccsr = &soc; | 44 | ccsr = &soc; |
45 | dcsr = &dcsr; | ||
45 | 46 | ||
46 | serial0 = &serial0; | 47 | serial0 = &serial0; |
47 | serial1 = &serial1; | 48 | serial1 = &serial1; |
@@ -77,7 +78,7 @@ | |||
77 | #address-cells = <1>; | 78 | #address-cells = <1>; |
78 | #size-cells = <0>; | 79 | #size-cells = <0>; |
79 | 80 | ||
80 | cpu0: PowerPC,4080@0 { | 81 | cpu0: PowerPC,e500mc@0 { |
81 | device_type = "cpu"; | 82 | device_type = "cpu"; |
82 | reg = <0>; | 83 | reg = <0>; |
83 | next-level-cache = <&L2_0>; | 84 | next-level-cache = <&L2_0>; |
@@ -85,7 +86,7 @@ | |||
85 | next-level-cache = <&cpc>; | 86 | next-level-cache = <&cpc>; |
86 | }; | 87 | }; |
87 | }; | 88 | }; |
88 | cpu1: PowerPC,4080@1 { | 89 | cpu1: PowerPC,e500mc@1 { |
89 | device_type = "cpu"; | 90 | device_type = "cpu"; |
90 | reg = <1>; | 91 | reg = <1>; |
91 | next-level-cache = <&L2_1>; | 92 | next-level-cache = <&L2_1>; |
@@ -93,7 +94,7 @@ | |||
93 | next-level-cache = <&cpc>; | 94 | next-level-cache = <&cpc>; |
94 | }; | 95 | }; |
95 | }; | 96 | }; |
96 | cpu2: PowerPC,4080@2 { | 97 | cpu2: PowerPC,e500mc@2 { |
97 | device_type = "cpu"; | 98 | device_type = "cpu"; |
98 | reg = <2>; | 99 | reg = <2>; |
99 | next-level-cache = <&L2_2>; | 100 | next-level-cache = <&L2_2>; |
@@ -101,7 +102,7 @@ | |||
101 | next-level-cache = <&cpc>; | 102 | next-level-cache = <&cpc>; |
102 | }; | 103 | }; |
103 | }; | 104 | }; |
104 | cpu3: PowerPC,4080@3 { | 105 | cpu3: PowerPC,e500mc@3 { |
105 | device_type = "cpu"; | 106 | device_type = "cpu"; |
106 | reg = <3>; | 107 | reg = <3>; |
107 | next-level-cache = <&L2_3>; | 108 | next-level-cache = <&L2_3>; |
@@ -109,7 +110,7 @@ | |||
109 | next-level-cache = <&cpc>; | 110 | next-level-cache = <&cpc>; |
110 | }; | 111 | }; |
111 | }; | 112 | }; |
112 | cpu4: PowerPC,4080@4 { | 113 | cpu4: PowerPC,e500mc@4 { |
113 | device_type = "cpu"; | 114 | device_type = "cpu"; |
114 | reg = <4>; | 115 | reg = <4>; |
115 | next-level-cache = <&L2_4>; | 116 | next-level-cache = <&L2_4>; |
@@ -117,7 +118,7 @@ | |||
117 | next-level-cache = <&cpc>; | 118 | next-level-cache = <&cpc>; |
118 | }; | 119 | }; |
119 | }; | 120 | }; |
120 | cpu5: PowerPC,4080@5 { | 121 | cpu5: PowerPC,e500mc@5 { |
121 | device_type = "cpu"; | 122 | device_type = "cpu"; |
122 | reg = <5>; | 123 | reg = <5>; |
123 | next-level-cache = <&L2_5>; | 124 | next-level-cache = <&L2_5>; |
@@ -125,7 +126,7 @@ | |||
125 | next-level-cache = <&cpc>; | 126 | next-level-cache = <&cpc>; |
126 | }; | 127 | }; |
127 | }; | 128 | }; |
128 | cpu6: PowerPC,4080@6 { | 129 | cpu6: PowerPC,e500mc@6 { |
129 | device_type = "cpu"; | 130 | device_type = "cpu"; |
130 | reg = <6>; | 131 | reg = <6>; |
131 | next-level-cache = <&L2_6>; | 132 | next-level-cache = <&L2_6>; |
@@ -133,7 +134,7 @@ | |||
133 | next-level-cache = <&cpc>; | 134 | next-level-cache = <&cpc>; |
134 | }; | 135 | }; |
135 | }; | 136 | }; |
136 | cpu7: PowerPC,4080@7 { | 137 | cpu7: PowerPC,e500mc@7 { |
137 | device_type = "cpu"; | 138 | device_type = "cpu"; |
138 | reg = <7>; | 139 | reg = <7>; |
139 | next-level-cache = <&L2_7>; | 140 | next-level-cache = <&L2_7>; |
@@ -143,6 +144,99 @@ | |||
143 | }; | 144 | }; |
144 | }; | 145 | }; |
145 | 146 | ||
147 | dcsr: dcsr@f00000000 { | ||
148 | #address-cells = <1>; | ||
149 | #size-cells = <1>; | ||
150 | compatible = "fsl,dcsr", "simple-bus"; | ||
151 | |||
152 | dcsr-epu@0 { | ||
153 | compatible = "fsl,dcsr-epu"; | ||
154 | interrupts = <52 2 0 0 | ||
155 | 84 2 0 0 | ||
156 | 85 2 0 0>; | ||
157 | interrupt-parent = <&mpic>; | ||
158 | reg = <0x0 0x1000>; | ||
159 | }; | ||
160 | dcsr-npc { | ||
161 | compatible = "fsl,dcsr-npc"; | ||
162 | reg = <0x1000 0x1000 0x1000000 0x8000>; | ||
163 | }; | ||
164 | dcsr-nxc@2000 { | ||
165 | compatible = "fsl,dcsr-nxc"; | ||
166 | reg = <0x2000 0x1000>; | ||
167 | }; | ||
168 | dcsr-corenet { | ||
169 | compatible = "fsl,dcsr-corenet"; | ||
170 | reg = <0x8000 0x1000 0xB0000 0x1000>; | ||
171 | }; | ||
172 | dcsr-dpaa@9000 { | ||
173 | compatible = "fsl,p4080-dcsr-dpaa", "fsl,dcsr-dpaa"; | ||
174 | reg = <0x9000 0x1000>; | ||
175 | }; | ||
176 | dcsr-ocn@11000 { | ||
177 | compatible = "fsl,p4080-dcsr-ocn", "fsl,dcsr-ocn"; | ||
178 | reg = <0x11000 0x1000>; | ||
179 | }; | ||
180 | dcsr-ddr@12000 { | ||
181 | compatible = "fsl,dcsr-ddr"; | ||
182 | dev-handle = <&ddr1>; | ||
183 | reg = <0x12000 0x1000>; | ||
184 | }; | ||
185 | dcsr-ddr@13000 { | ||
186 | compatible = "fsl,dcsr-ddr"; | ||
187 | dev-handle = <&ddr2>; | ||
188 | reg = <0x13000 0x1000>; | ||
189 | }; | ||
190 | dcsr-nal@18000 { | ||
191 | compatible = "fsl,p4080-dcsr-nal", "fsl,dcsr-nal"; | ||
192 | reg = <0x18000 0x1000>; | ||
193 | }; | ||
194 | dcsr-rcpm@22000 { | ||
195 | compatible = "fsl,p4080-dcsr-rcpm", "fsl,dcsr-rcpm"; | ||
196 | reg = <0x22000 0x1000>; | ||
197 | }; | ||
198 | dcsr-cpu-sb-proxy@40000 { | ||
199 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
200 | cpu-handle = <&cpu0>; | ||
201 | reg = <0x40000 0x1000>; | ||
202 | }; | ||
203 | dcsr-cpu-sb-proxy@41000 { | ||
204 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
205 | cpu-handle = <&cpu1>; | ||
206 | reg = <0x41000 0x1000>; | ||
207 | }; | ||
208 | dcsr-cpu-sb-proxy@42000 { | ||
209 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
210 | cpu-handle = <&cpu2>; | ||
211 | reg = <0x42000 0x1000>; | ||
212 | }; | ||
213 | dcsr-cpu-sb-proxy@43000 { | ||
214 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
215 | cpu-handle = <&cpu3>; | ||
216 | reg = <0x43000 0x1000>; | ||
217 | }; | ||
218 | dcsr-cpu-sb-proxy@44000 { | ||
219 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
220 | cpu-handle = <&cpu4>; | ||
221 | reg = <0x44000 0x1000>; | ||
222 | }; | ||
223 | dcsr-cpu-sb-proxy@45000 { | ||
224 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
225 | cpu-handle = <&cpu5>; | ||
226 | reg = <0x45000 0x1000>; | ||
227 | }; | ||
228 | dcsr-cpu-sb-proxy@46000 { | ||
229 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
230 | cpu-handle = <&cpu6>; | ||
231 | reg = <0x46000 0x1000>; | ||
232 | }; | ||
233 | dcsr-cpu-sb-proxy@47000 { | ||
234 | compatible = "fsl,dcsr-e500mc-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
235 | cpu-handle = <&cpu7>; | ||
236 | reg = <0x47000 0x1000>; | ||
237 | }; | ||
238 | }; | ||
239 | |||
146 | soc: soc@ffe000000 { | 240 | soc: soc@ffe000000 { |
147 | #address-cells = <1>; | 241 | #address-cells = <1>; |
148 | #size-cells = <1>; | 242 | #size-cells = <1>; |
@@ -162,13 +256,13 @@ | |||
162 | fsl,num-laws = <32>; | 256 | fsl,num-laws = <32>; |
163 | }; | 257 | }; |
164 | 258 | ||
165 | memory-controller@8000 { | 259 | ddr1: memory-controller@8000 { |
166 | compatible = "fsl,qoriq-memory-controller-v4.4", "fsl,qoriq-memory-controller"; | 260 | compatible = "fsl,qoriq-memory-controller-v4.4", "fsl,qoriq-memory-controller"; |
167 | reg = <0x8000 0x1000>; | 261 | reg = <0x8000 0x1000>; |
168 | interrupts = <16 2 1 23>; | 262 | interrupts = <16 2 1 23>; |
169 | }; | 263 | }; |
170 | 264 | ||
171 | memory-controller@9000 { | 265 | ddr2: memory-controller@9000 { |
172 | compatible = "fsl,qoriq-memory-controller-v4.4","fsl,qoriq-memory-controller"; | 266 | compatible = "fsl,qoriq-memory-controller-v4.4","fsl,qoriq-memory-controller"; |
173 | reg = <0x9000 0x1000>; | 267 | reg = <0x9000 0x1000>; |
174 | interrupts = <16 2 1 22>; | 268 | interrupts = <16 2 1 22>; |
diff --git a/arch/powerpc/boot/dts/p5020ds.dts b/arch/powerpc/boot/dts/p5020ds.dts index 8366e2fd2fba..e6d40999ccd7 100644 --- a/arch/powerpc/boot/dts/p5020ds.dts +++ b/arch/powerpc/boot/dts/p5020ds.dts | |||
@@ -45,6 +45,10 @@ | |||
45 | device_type = "memory"; | 45 | device_type = "memory"; |
46 | }; | 46 | }; |
47 | 47 | ||
48 | dcsr: dcsr@f00000000 { | ||
49 | ranges = <0x00000000 0xf 0x00000000 0x01008000>; | ||
50 | }; | ||
51 | |||
48 | soc: soc@ffe000000 { | 52 | soc: soc@ffe000000 { |
49 | spi@110000 { | 53 | spi@110000 { |
50 | flash@0 { | 54 | flash@0 { |
@@ -147,8 +151,8 @@ | |||
147 | }; | 151 | }; |
148 | 152 | ||
149 | board-control@3,0 { | 153 | board-control@3,0 { |
150 | compatible = "fsl,p5020ds-pixis"; | 154 | compatible = "fsl,p5020ds-fpga", "fsl,fpga-ngpixis"; |
151 | reg = <3 0 0x20>; | 155 | reg = <3 0 0x30>; |
152 | }; | 156 | }; |
153 | }; | 157 | }; |
154 | 158 | ||
diff --git a/arch/powerpc/boot/dts/p5020si.dtsi b/arch/powerpc/boot/dts/p5020si.dtsi index 5e6048ec55bb..e7948ad71fa3 100644 --- a/arch/powerpc/boot/dts/p5020si.dtsi +++ b/arch/powerpc/boot/dts/p5020si.dtsi | |||
@@ -42,6 +42,7 @@ | |||
42 | 42 | ||
43 | aliases { | 43 | aliases { |
44 | ccsr = &soc; | 44 | ccsr = &soc; |
45 | dcsr = &dcsr; | ||
45 | 46 | ||
46 | serial0 = &serial0; | 47 | serial0 = &serial0; |
47 | serial1 = &serial1; | 48 | serial1 = &serial1; |
@@ -98,6 +99,69 @@ | |||
98 | }; | 99 | }; |
99 | }; | 100 | }; |
100 | 101 | ||
102 | dcsr: dcsr@f00000000 { | ||
103 | #address-cells = <1>; | ||
104 | #size-cells = <1>; | ||
105 | compatible = "fsl,dcsr", "simple-bus"; | ||
106 | |||
107 | dcsr-epu@0 { | ||
108 | compatible = "fsl,dcsr-epu"; | ||
109 | interrupts = <52 2 0 0 | ||
110 | 84 2 0 0 | ||
111 | 85 2 0 0>; | ||
112 | interrupt-parent = <&mpic>; | ||
113 | reg = <0x0 0x1000>; | ||
114 | }; | ||
115 | dcsr-npc { | ||
116 | compatible = "fsl,dcsr-npc"; | ||
117 | reg = <0x1000 0x1000 0x1000000 0x8000>; | ||
118 | }; | ||
119 | dcsr-nxc@2000 { | ||
120 | compatible = "fsl,dcsr-nxc"; | ||
121 | reg = <0x2000 0x1000>; | ||
122 | }; | ||
123 | dcsr-corenet { | ||
124 | compatible = "fsl,dcsr-corenet"; | ||
125 | reg = <0x8000 0x1000 0xB0000 0x1000>; | ||
126 | }; | ||
127 | dcsr-dpaa@9000 { | ||
128 | compatible = "fsl,p5020-dcsr-dpaa", "fsl,dcsr-dpaa"; | ||
129 | reg = <0x9000 0x1000>; | ||
130 | }; | ||
131 | dcsr-ocn@11000 { | ||
132 | compatible = "fsl,p5020-dcsr-ocn", "fsl,dcsr-ocn"; | ||
133 | reg = <0x11000 0x1000>; | ||
134 | }; | ||
135 | dcsr-ddr@12000 { | ||
136 | compatible = "fsl,dcsr-ddr"; | ||
137 | dev-handle = <&ddr1>; | ||
138 | reg = <0x12000 0x1000>; | ||
139 | }; | ||
140 | dcsr-ddr@13000 { | ||
141 | compatible = "fsl,dcsr-ddr"; | ||
142 | dev-handle = <&ddr2>; | ||
143 | reg = <0x13000 0x1000>; | ||
144 | }; | ||
145 | dcsr-nal@18000 { | ||
146 | compatible = "fsl,p5020-dcsr-nal", "fsl,dcsr-nal"; | ||
147 | reg = <0x18000 0x1000>; | ||
148 | }; | ||
149 | dcsr-rcpm@22000 { | ||
150 | compatible = "fsl,p5020-dcsr-rcpm", "fsl,dcsr-rcpm"; | ||
151 | reg = <0x22000 0x1000>; | ||
152 | }; | ||
153 | dcsr-cpu-sb-proxy@40000 { | ||
154 | compatible = "fsl,dcsr-e5500-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
155 | cpu-handle = <&cpu0>; | ||
156 | reg = <0x40000 0x1000>; | ||
157 | }; | ||
158 | dcsr-cpu-sb-proxy@41000 { | ||
159 | compatible = "fsl,dcsr-e5500-sb-proxy", "fsl,dcsr-cpu-sb-proxy"; | ||
160 | cpu-handle = <&cpu1>; | ||
161 | reg = <0x41000 0x1000>; | ||
162 | }; | ||
163 | }; | ||
164 | |||
101 | soc: soc@ffe000000 { | 165 | soc: soc@ffe000000 { |
102 | #address-cells = <1>; | 166 | #address-cells = <1>; |
103 | #size-cells = <1>; | 167 | #size-cells = <1>; |
@@ -117,13 +181,13 @@ | |||
117 | fsl,num-laws = <32>; | 181 | fsl,num-laws = <32>; |
118 | }; | 182 | }; |
119 | 183 | ||
120 | memory-controller@8000 { | 184 | ddr1: memory-controller@8000 { |
121 | compatible = "fsl,qoriq-memory-controller-v4.5", "fsl,qoriq-memory-controller"; | 185 | compatible = "fsl,qoriq-memory-controller-v4.5", "fsl,qoriq-memory-controller"; |
122 | reg = <0x8000 0x1000>; | 186 | reg = <0x8000 0x1000>; |
123 | interrupts = <16 2 1 23>; | 187 | interrupts = <16 2 1 23>; |
124 | }; | 188 | }; |
125 | 189 | ||
126 | memory-controller@9000 { | 190 | ddr2: memory-controller@9000 { |
127 | compatible = "fsl,qoriq-memory-controller-v4.5", "fsl,qoriq-memory-controller"; | 191 | compatible = "fsl,qoriq-memory-controller-v4.5", "fsl,qoriq-memory-controller"; |
128 | reg = <0x9000 0x1000>; | 192 | reg = <0x9000 0x1000>; |
129 | interrupts = <16 2 1 22>; | 193 | interrupts = <16 2 1 22>; |
diff --git a/arch/powerpc/boot/dts/sbc8560.dts b/arch/powerpc/boot/dts/sbc8560.dts index 9e13ed8a1193..72078eb15616 100644 --- a/arch/powerpc/boot/dts/sbc8560.dts +++ b/arch/powerpc/boot/dts/sbc8560.dts | |||
@@ -331,7 +331,7 @@ | |||
331 | }; | 331 | }; |
332 | 332 | ||
333 | localbus@ff705000 { | 333 | localbus@ff705000 { |
334 | compatible = "fsl,mpc8560-localbus"; | 334 | compatible = "fsl,mpc8560-localbus", "simple-bus"; |
335 | #address-cells = <2>; | 335 | #address-cells = <2>; |
336 | #size-cells = <1>; | 336 | #size-cells = <1>; |
337 | reg = <0xff705000 0x100>; // BRx, ORx, etc. | 337 | reg = <0xff705000 0x100>; // BRx, ORx, etc. |
diff --git a/arch/powerpc/boot/dts/yosemite.dts b/arch/powerpc/boot/dts/yosemite.dts index 64923245f0e5..30bb4753577a 100644 --- a/arch/powerpc/boot/dts/yosemite.dts +++ b/arch/powerpc/boot/dts/yosemite.dts | |||
@@ -138,6 +138,42 @@ | |||
138 | clock-frequency = <0>; /* Filled in by zImage */ | 138 | clock-frequency = <0>; /* Filled in by zImage */ |
139 | interrupts = <0x5 0x1>; | 139 | interrupts = <0x5 0x1>; |
140 | interrupt-parent = <&UIC1>; | 140 | interrupt-parent = <&UIC1>; |
141 | |||
142 | nor_flash@0,0 { | ||
143 | compatible = "amd,s29gl256n", "cfi-flash"; | ||
144 | bank-width = <2>; | ||
145 | reg = <0x00000000 0x00000000 0x04000000>; | ||
146 | #address-cells = <1>; | ||
147 | #size-cells = <1>; | ||
148 | partition@0 { | ||
149 | label = "kernel"; | ||
150 | reg = <0x00000000 0x001e0000>; | ||
151 | }; | ||
152 | partition@1e0000 { | ||
153 | label = "dtb"; | ||
154 | reg = <0x001e0000 0x00020000>; | ||
155 | }; | ||
156 | partition@200000 { | ||
157 | label = "ramdisk"; | ||
158 | reg = <0x00200000 0x01400000>; | ||
159 | }; | ||
160 | partition@1600000 { | ||
161 | label = "jffs2"; | ||
162 | reg = <0x01600000 0x00400000>; | ||
163 | }; | ||
164 | partition@1a00000 { | ||
165 | label = "user"; | ||
166 | reg = <0x01a00000 0x02540000>; | ||
167 | }; | ||
168 | partition@3f40000 { | ||
169 | label = "env"; | ||
170 | reg = <0x03f40000 0x00040000>; | ||
171 | }; | ||
172 | partition@3f80000 { | ||
173 | label = "u-boot"; | ||
174 | reg = <0x03f80000 0x00080000>; | ||
175 | }; | ||
176 | }; | ||
141 | }; | 177 | }; |
142 | 178 | ||
143 | UART0: serial@ef600300 { | 179 | UART0: serial@ef600300 { |
diff --git a/arch/powerpc/configs/40x/acadia_defconfig b/arch/powerpc/configs/40x/acadia_defconfig index 4182c772340b..ed3bab72a834 100644 --- a/arch/powerpc/configs/40x/acadia_defconfig +++ b/arch/powerpc/configs/40x/acadia_defconfig | |||
@@ -44,12 +44,13 @@ CONFIG_BLK_DEV_RAM=y | |||
44 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 44 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
45 | # CONFIG_MISC_DEVICES is not set | 45 | # CONFIG_MISC_DEVICES is not set |
46 | CONFIG_NETDEVICES=y | 46 | CONFIG_NETDEVICES=y |
47 | CONFIG_NET_ETHERNET=y | 47 | CONFIG_ETHERNET=y |
48 | CONFIG_NET_VENDOR_IBM=y | ||
48 | CONFIG_MII=y | 49 | CONFIG_MII=y |
49 | CONFIG_IBM_NEW_EMAC=y | 50 | CONFIG_IBM_EMAC=y |
50 | CONFIG_IBM_NEW_EMAC_RXB=256 | 51 | CONFIG_IBM_EMAC_RXB=256 |
51 | CONFIG_IBM_NEW_EMAC_TXB=256 | 52 | CONFIG_IBM_EMAC_TXB=256 |
52 | CONFIG_IBM_NEW_EMAC_DEBUG=y | 53 | CONFIG_IBM_EMAC_DEBUG=y |
53 | # CONFIG_NETDEV_1000 is not set | 54 | # CONFIG_NETDEV_1000 is not set |
54 | # CONFIG_NETDEV_10000 is not set | 55 | # CONFIG_NETDEV_10000 is not set |
55 | # CONFIG_INPUT is not set | 56 | # CONFIG_INPUT is not set |
diff --git a/arch/powerpc/configs/40x/ep405_defconfig b/arch/powerpc/configs/40x/ep405_defconfig index 2dbb293163f5..17582a3420fb 100644 --- a/arch/powerpc/configs/40x/ep405_defconfig +++ b/arch/powerpc/configs/40x/ep405_defconfig | |||
@@ -42,8 +42,9 @@ CONFIG_PROC_DEVICETREE=y | |||
42 | CONFIG_BLK_DEV_RAM=y | 42 | CONFIG_BLK_DEV_RAM=y |
43 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 43 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
44 | CONFIG_NETDEVICES=y | 44 | CONFIG_NETDEVICES=y |
45 | CONFIG_NET_ETHERNET=y | 45 | CONFIG_ETHERNET=y |
46 | CONFIG_IBM_NEW_EMAC=y | 46 | CONFIG_NET_VENDOR_IBM=y |
47 | CONFIG_IBM_EMAC=y | ||
47 | # CONFIG_INPUT is not set | 48 | # CONFIG_INPUT is not set |
48 | # CONFIG_SERIO is not set | 49 | # CONFIG_SERIO is not set |
49 | # CONFIG_VT is not set | 50 | # CONFIG_VT is not set |
diff --git a/arch/powerpc/configs/40x/hcu4_defconfig b/arch/powerpc/configs/40x/hcu4_defconfig deleted file mode 100644 index ebeb4accad65..000000000000 --- a/arch/powerpc/configs/40x/hcu4_defconfig +++ /dev/null | |||
@@ -1,80 +0,0 @@ | |||
1 | CONFIG_40x=y | ||
2 | CONFIG_EXPERIMENTAL=y | ||
3 | CONFIG_SYSVIPC=y | ||
4 | CONFIG_POSIX_MQUEUE=y | ||
5 | CONFIG_LOG_BUF_SHIFT=14 | ||
6 | CONFIG_BLK_DEV_INITRD=y | ||
7 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
8 | CONFIG_EXPERT=y | ||
9 | CONFIG_KALLSYMS_ALL=y | ||
10 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
11 | CONFIG_MODULES=y | ||
12 | CONFIG_MODULE_UNLOAD=y | ||
13 | # CONFIG_BLK_DEV_BSG is not set | ||
14 | CONFIG_HCU4=y | ||
15 | # CONFIG_WALNUT is not set | ||
16 | CONFIG_SPARSE_IRQ=y | ||
17 | CONFIG_PCI=y | ||
18 | CONFIG_NET=y | ||
19 | CONFIG_PACKET=y | ||
20 | CONFIG_UNIX=y | ||
21 | CONFIG_INET=y | ||
22 | CONFIG_IP_PNP=y | ||
23 | CONFIG_IP_PNP_DHCP=y | ||
24 | CONFIG_IP_PNP_BOOTP=y | ||
25 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
26 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
27 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
28 | # CONFIG_INET_LRO is not set | ||
29 | # CONFIG_IPV6 is not set | ||
30 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
31 | CONFIG_CONNECTOR=y | ||
32 | CONFIG_MTD=y | ||
33 | CONFIG_MTD_PARTITIONS=y | ||
34 | CONFIG_MTD_CMDLINE_PARTS=y | ||
35 | CONFIG_MTD_OF_PARTS=y | ||
36 | CONFIG_MTD_CHAR=y | ||
37 | CONFIG_MTD_BLOCK=m | ||
38 | CONFIG_MTD_CFI=y | ||
39 | CONFIG_MTD_JEDECPROBE=y | ||
40 | CONFIG_MTD_CFI_AMDSTD=y | ||
41 | CONFIG_MTD_PHYSMAP_OF=y | ||
42 | CONFIG_PROC_DEVICETREE=y | ||
43 | CONFIG_BLK_DEV_RAM=y | ||
44 | CONFIG_BLK_DEV_RAM_SIZE=35000 | ||
45 | CONFIG_NETDEVICES=y | ||
46 | CONFIG_NET_ETHERNET=y | ||
47 | CONFIG_IBM_NEW_EMAC=y | ||
48 | # CONFIG_INPUT is not set | ||
49 | # CONFIG_SERIO is not set | ||
50 | # CONFIG_VT is not set | ||
51 | CONFIG_SERIAL_8250=y | ||
52 | CONFIG_SERIAL_8250_CONSOLE=y | ||
53 | CONFIG_SERIAL_8250_EXTENDED=y | ||
54 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
55 | CONFIG_SERIAL_OF_PLATFORM=y | ||
56 | # CONFIG_HW_RANDOM is not set | ||
57 | # CONFIG_HWMON is not set | ||
58 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
59 | # CONFIG_USB_SUPPORT is not set | ||
60 | CONFIG_EXT2_FS=y | ||
61 | CONFIG_INOTIFY=y | ||
62 | CONFIG_PROC_KCORE=y | ||
63 | CONFIG_TMPFS=y | ||
64 | CONFIG_CRAMFS=y | ||
65 | CONFIG_NFS_FS=y | ||
66 | CONFIG_NFS_V3=y | ||
67 | CONFIG_ROOT_NFS=y | ||
68 | CONFIG_MAGIC_SYSRQ=y | ||
69 | CONFIG_DEBUG_FS=y | ||
70 | CONFIG_DEBUG_KERNEL=y | ||
71 | CONFIG_DETECT_HUNG_TASK=y | ||
72 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
73 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
74 | CONFIG_CRYPTO=y | ||
75 | CONFIG_CRYPTO_CBC=y | ||
76 | CONFIG_CRYPTO_ECB=y | ||
77 | CONFIG_CRYPTO_PCBC=y | ||
78 | CONFIG_CRYPTO_MD5=y | ||
79 | CONFIG_CRYPTO_DES=y | ||
80 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | ||
diff --git a/arch/powerpc/configs/40x/kilauea_defconfig b/arch/powerpc/configs/40x/kilauea_defconfig index 532ea9d93a15..f2d4be936e08 100644 --- a/arch/powerpc/configs/40x/kilauea_defconfig +++ b/arch/powerpc/configs/40x/kilauea_defconfig | |||
@@ -51,10 +51,11 @@ CONFIG_BLK_DEV_RAM=y | |||
51 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 51 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
52 | # CONFIG_MISC_DEVICES is not set | 52 | # CONFIG_MISC_DEVICES is not set |
53 | CONFIG_NETDEVICES=y | 53 | CONFIG_NETDEVICES=y |
54 | CONFIG_NET_ETHERNET=y | 54 | CONFIG_ETHERNET=y |
55 | CONFIG_IBM_NEW_EMAC=y | 55 | CONFIG_NET_VENDOR_IBM=y |
56 | CONFIG_IBM_NEW_EMAC_RXB=256 | 56 | CONFIG_IBM_EMAC=y |
57 | CONFIG_IBM_NEW_EMAC_TXB=256 | 57 | CONFIG_IBM_EMAC_RXB=256 |
58 | CONFIG_IBM_EMAC_TXB=256 | ||
58 | # CONFIG_NETDEV_1000 is not set | 59 | # CONFIG_NETDEV_1000 is not set |
59 | # CONFIG_NETDEV_10000 is not set | 60 | # CONFIG_NETDEV_10000 is not set |
60 | # CONFIG_INPUT is not set | 61 | # CONFIG_INPUT is not set |
diff --git a/arch/powerpc/configs/40x/makalu_defconfig b/arch/powerpc/configs/40x/makalu_defconfig index 3c142ac1b344..42b979355f9b 100644 --- a/arch/powerpc/configs/40x/makalu_defconfig +++ b/arch/powerpc/configs/40x/makalu_defconfig | |||
@@ -43,10 +43,11 @@ CONFIG_BLK_DEV_RAM=y | |||
43 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 43 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
44 | # CONFIG_MISC_DEVICES is not set | 44 | # CONFIG_MISC_DEVICES is not set |
45 | CONFIG_NETDEVICES=y | 45 | CONFIG_NETDEVICES=y |
46 | CONFIG_NET_ETHERNET=y | 46 | CONFIG_ETHERNET=y |
47 | CONFIG_IBM_NEW_EMAC=y | 47 | CONFIG_NET_VENDOR_IBM=y |
48 | CONFIG_IBM_NEW_EMAC_RXB=256 | 48 | CONFIG_IBM_EMAC=y |
49 | CONFIG_IBM_NEW_EMAC_TXB=256 | 49 | CONFIG_IBM_EMAC_RXB=256 |
50 | CONFIG_IBM_EMAC_TXB=256 | ||
50 | # CONFIG_NETDEV_1000 is not set | 51 | # CONFIG_NETDEV_1000 is not set |
51 | # CONFIG_NETDEV_10000 is not set | 52 | # CONFIG_NETDEV_10000 is not set |
52 | # CONFIG_INPUT is not set | 53 | # CONFIG_INPUT is not set |
diff --git a/arch/powerpc/configs/40x/walnut_defconfig b/arch/powerpc/configs/40x/walnut_defconfig index ff57d4828ffc..aa1a4cac3708 100644 --- a/arch/powerpc/configs/40x/walnut_defconfig +++ b/arch/powerpc/configs/40x/walnut_defconfig | |||
@@ -40,8 +40,9 @@ CONFIG_PROC_DEVICETREE=y | |||
40 | CONFIG_BLK_DEV_RAM=y | 40 | CONFIG_BLK_DEV_RAM=y |
41 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 41 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
42 | CONFIG_NETDEVICES=y | 42 | CONFIG_NETDEVICES=y |
43 | CONFIG_NET_ETHERNET=y | 43 | CONFIG_ETHERNET=y |
44 | CONFIG_IBM_NEW_EMAC=y | 44 | CONFIG_NET_VENDOR_IBM=y |
45 | CONFIG_IBM_EMAC=y | ||
45 | # CONFIG_INPUT is not set | 46 | # CONFIG_INPUT is not set |
46 | # CONFIG_SERIO is not set | 47 | # CONFIG_SERIO is not set |
47 | # CONFIG_VT is not set | 48 | # CONFIG_VT is not set |
diff --git a/arch/powerpc/configs/44x/arches_defconfig b/arch/powerpc/configs/44x/arches_defconfig index 3ed16d5c909d..329f9a3b892e 100644 --- a/arch/powerpc/configs/44x/arches_defconfig +++ b/arch/powerpc/configs/44x/arches_defconfig | |||
@@ -44,10 +44,11 @@ CONFIG_BLK_DEV_RAM=y | |||
44 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 44 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
45 | # CONFIG_MISC_DEVICES is not set | 45 | # CONFIG_MISC_DEVICES is not set |
46 | CONFIG_NETDEVICES=y | 46 | CONFIG_NETDEVICES=y |
47 | CONFIG_NET_ETHERNET=y | 47 | CONFIG_ETHERNET=y |
48 | CONFIG_IBM_NEW_EMAC=y | 48 | CONFIG_NET_VENDOR_IBM=y |
49 | CONFIG_IBM_NEW_EMAC_RXB=256 | 49 | CONFIG_IBM_EMAC=y |
50 | CONFIG_IBM_NEW_EMAC_TXB=256 | 50 | CONFIG_IBM_EMAC_RXB=256 |
51 | CONFIG_IBM_EMAC_TXB=256 | ||
51 | # CONFIG_NETDEV_1000 is not set | 52 | # CONFIG_NETDEV_1000 is not set |
52 | # CONFIG_NETDEV_10000 is not set | 53 | # CONFIG_NETDEV_10000 is not set |
53 | # CONFIG_INPUT is not set | 54 | # CONFIG_INPUT is not set |
diff --git a/arch/powerpc/configs/44x/bamboo_defconfig b/arch/powerpc/configs/44x/bamboo_defconfig index b1b7d2c5c059..cef7d62560c4 100644 --- a/arch/powerpc/configs/44x/bamboo_defconfig +++ b/arch/powerpc/configs/44x/bamboo_defconfig | |||
@@ -32,8 +32,9 @@ CONFIG_PROC_DEVICETREE=y | |||
32 | CONFIG_BLK_DEV_RAM=y | 32 | CONFIG_BLK_DEV_RAM=y |
33 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 33 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
34 | CONFIG_NETDEVICES=y | 34 | CONFIG_NETDEVICES=y |
35 | CONFIG_NET_ETHERNET=y | 35 | CONFIG_ETHERNET=y |
36 | CONFIG_IBM_NEW_EMAC=y | 36 | CONFIG_NET_VENDOR_IBM=y |
37 | CONFIG_IBM_EMAC=y | ||
37 | # CONFIG_INPUT is not set | 38 | # CONFIG_INPUT is not set |
38 | # CONFIG_SERIO is not set | 39 | # CONFIG_SERIO is not set |
39 | # CONFIG_VT is not set | 40 | # CONFIG_VT is not set |
diff --git a/arch/powerpc/configs/44x/bluestone_defconfig b/arch/powerpc/configs/44x/bluestone_defconfig index 30a0a8e08fdd..20c8d26d7fc0 100644 --- a/arch/powerpc/configs/44x/bluestone_defconfig +++ b/arch/powerpc/configs/44x/bluestone_defconfig | |||
@@ -38,10 +38,11 @@ CONFIG_PROC_DEVICETREE=y | |||
38 | CONFIG_BLK_DEV_RAM=y | 38 | CONFIG_BLK_DEV_RAM=y |
39 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 39 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
40 | CONFIG_NETDEVICES=y | 40 | CONFIG_NETDEVICES=y |
41 | CONFIG_NET_ETHERNET=y | 41 | CONFIG_ETHERNET=y |
42 | CONFIG_IBM_NEW_EMAC=y | 42 | CONFIG_NET_VENDOR_IBM=y |
43 | CONFIG_IBM_NEW_EMAC_RXB=256 | 43 | CONFIG_IBM_EMAC=y |
44 | CONFIG_IBM_NEW_EMAC_TXB=256 | 44 | CONFIG_IBM_EMAC_RXB=256 |
45 | CONFIG_IBM_EMAC_TXB=256 | ||
45 | CONFIG_SERIAL_8250=y | 46 | CONFIG_SERIAL_8250=y |
46 | CONFIG_SERIAL_8250_CONSOLE=y | 47 | CONFIG_SERIAL_8250_CONSOLE=y |
47 | CONFIG_SERIAL_8250_NR_UARTS=2 | 48 | CONFIG_SERIAL_8250_NR_UARTS=2 |
diff --git a/arch/powerpc/configs/44x/canyonlands_defconfig b/arch/powerpc/configs/44x/canyonlands_defconfig index a46942aac695..d5be93e6e92d 100644 --- a/arch/powerpc/configs/44x/canyonlands_defconfig +++ b/arch/powerpc/configs/44x/canyonlands_defconfig | |||
@@ -49,10 +49,11 @@ CONFIG_BLK_DEV_RAM=y | |||
49 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 49 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
50 | # CONFIG_MISC_DEVICES is not set | 50 | # CONFIG_MISC_DEVICES is not set |
51 | CONFIG_NETDEVICES=y | 51 | CONFIG_NETDEVICES=y |
52 | CONFIG_NET_ETHERNET=y | 52 | CONFIG_ETHERNET=y |
53 | CONFIG_IBM_NEW_EMAC=y | 53 | CONFIG_NET_VENDOR_IBM=y |
54 | CONFIG_IBM_NEW_EMAC_RXB=256 | 54 | CONFIG_IBM_EMAC=y |
55 | CONFIG_IBM_NEW_EMAC_TXB=256 | 55 | CONFIG_IBM_EMAC_RXB=256 |
56 | CONFIG_IBM_EMAC_TXB=256 | ||
56 | # CONFIG_NETDEV_1000 is not set | 57 | # CONFIG_NETDEV_1000 is not set |
57 | # CONFIG_NETDEV_10000 is not set | 58 | # CONFIG_NETDEV_10000 is not set |
58 | # CONFIG_INPUT is not set | 59 | # CONFIG_INPUT is not set |
diff --git a/arch/powerpc/configs/44x/ebony_defconfig b/arch/powerpc/configs/44x/ebony_defconfig index 07d77e51f1ba..f9269fc4ffcc 100644 --- a/arch/powerpc/configs/44x/ebony_defconfig +++ b/arch/powerpc/configs/44x/ebony_defconfig | |||
@@ -40,8 +40,9 @@ CONFIG_PROC_DEVICETREE=y | |||
40 | CONFIG_BLK_DEV_RAM=y | 40 | CONFIG_BLK_DEV_RAM=y |
41 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 41 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
42 | CONFIG_NETDEVICES=y | 42 | CONFIG_NETDEVICES=y |
43 | CONFIG_NET_ETHERNET=y | 43 | CONFIG_ETHERNET=y |
44 | CONFIG_IBM_NEW_EMAC=y | 44 | CONFIG_NET_VENDOR_IBM=y |
45 | CONFIG_IBM_EMAC=y | ||
45 | # CONFIG_INPUT is not set | 46 | # CONFIG_INPUT is not set |
46 | # CONFIG_SERIO is not set | 47 | # CONFIG_SERIO is not set |
47 | # CONFIG_VT is not set | 48 | # CONFIG_VT is not set |
diff --git a/arch/powerpc/configs/44x/eiger_defconfig b/arch/powerpc/configs/44x/eiger_defconfig index 2ce7e9aff09e..9be089038fd7 100644 --- a/arch/powerpc/configs/44x/eiger_defconfig +++ b/arch/powerpc/configs/44x/eiger_defconfig | |||
@@ -55,10 +55,11 @@ CONFIG_FUSION=y | |||
55 | CONFIG_FUSION_SAS=y | 55 | CONFIG_FUSION_SAS=y |
56 | CONFIG_I2O=y | 56 | CONFIG_I2O=y |
57 | CONFIG_NETDEVICES=y | 57 | CONFIG_NETDEVICES=y |
58 | CONFIG_NET_ETHERNET=y | 58 | CONFIG_ETHERNET=y |
59 | CONFIG_IBM_NEW_EMAC=y | 59 | CONFIG_NET_VENDOR_IBM=y |
60 | CONFIG_IBM_NEW_EMAC_RXB=256 | 60 | CONFIG_IBM_EMAC=y |
61 | CONFIG_IBM_NEW_EMAC_TXB=256 | 61 | CONFIG_IBM_EMAC_RXB=256 |
62 | CONFIG_IBM_EMAC_TXB=256 | ||
62 | CONFIG_E1000E=y | 63 | CONFIG_E1000E=y |
63 | # CONFIG_NETDEV_10000 is not set | 64 | # CONFIG_NETDEV_10000 is not set |
64 | # CONFIG_INPUT is not set | 65 | # CONFIG_INPUT is not set |
diff --git a/arch/powerpc/configs/44x/icon_defconfig b/arch/powerpc/configs/44x/icon_defconfig index 18730ff9de7c..82f73035a7ce 100644 --- a/arch/powerpc/configs/44x/icon_defconfig +++ b/arch/powerpc/configs/44x/icon_defconfig | |||
@@ -56,8 +56,9 @@ CONFIG_FUSION_SAS=y | |||
56 | CONFIG_FUSION_CTL=y | 56 | CONFIG_FUSION_CTL=y |
57 | CONFIG_FUSION_LOGGING=y | 57 | CONFIG_FUSION_LOGGING=y |
58 | CONFIG_NETDEVICES=y | 58 | CONFIG_NETDEVICES=y |
59 | CONFIG_NET_ETHERNET=y | 59 | CONFIG_ETHERNET=y |
60 | CONFIG_IBM_NEW_EMAC=y | 60 | CONFIG_NET_VENDOR_IBM=y |
61 | CONFIG_IBM_EMAC=y | ||
61 | # CONFIG_NETDEV_1000 is not set | 62 | # CONFIG_NETDEV_1000 is not set |
62 | # CONFIG_NETDEV_10000 is not set | 63 | # CONFIG_NETDEV_10000 is not set |
63 | # CONFIG_WLAN is not set | 64 | # CONFIG_WLAN is not set |
diff --git a/arch/powerpc/configs/44x/katmai_defconfig b/arch/powerpc/configs/44x/katmai_defconfig index 34c09144a699..109562c3c6be 100644 --- a/arch/powerpc/configs/44x/katmai_defconfig +++ b/arch/powerpc/configs/44x/katmai_defconfig | |||
@@ -42,8 +42,9 @@ CONFIG_BLK_DEV_RAM=y | |||
42 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 42 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
43 | CONFIG_MACINTOSH_DRIVERS=y | 43 | CONFIG_MACINTOSH_DRIVERS=y |
44 | CONFIG_NETDEVICES=y | 44 | CONFIG_NETDEVICES=y |
45 | CONFIG_NET_ETHERNET=y | 45 | CONFIG_ETHERNET=y |
46 | CONFIG_IBM_NEW_EMAC=y | 46 | CONFIG_NET_VENDOR_IBM=y |
47 | CONFIG_IBM_EMAC=y | ||
47 | # CONFIG_INPUT is not set | 48 | # CONFIG_INPUT is not set |
48 | # CONFIG_SERIO is not set | 49 | # CONFIG_SERIO is not set |
49 | # CONFIG_VT is not set | 50 | # CONFIG_VT is not set |
diff --git a/arch/powerpc/configs/44x/redwood_defconfig b/arch/powerpc/configs/44x/redwood_defconfig index 01cc2b1a7f9a..48802811da76 100644 --- a/arch/powerpc/configs/44x/redwood_defconfig +++ b/arch/powerpc/configs/44x/redwood_defconfig | |||
@@ -53,11 +53,12 @@ CONFIG_FUSION=y | |||
53 | CONFIG_FUSION_SAS=y | 53 | CONFIG_FUSION_SAS=y |
54 | CONFIG_I2O=y | 54 | CONFIG_I2O=y |
55 | CONFIG_NETDEVICES=y | 55 | CONFIG_NETDEVICES=y |
56 | CONFIG_NET_ETHERNET=y | 56 | CONFIG_ETHERNET=y |
57 | CONFIG_IBM_NEW_EMAC=y | 57 | CONFIG_NET_VENDOR_IBM=y |
58 | CONFIG_IBM_NEW_EMAC_RXB=256 | 58 | CONFIG_IBM_EMAC=y |
59 | CONFIG_IBM_NEW_EMAC_TXB=256 | 59 | CONFIG_IBM_EMAC_RXB=256 |
60 | CONFIG_IBM_NEW_EMAC_DEBUG=y | 60 | CONFIG_IBM_EMAC_TXB=256 |
61 | CONFIG_IBM_EMAC_DEBUG=y | ||
61 | CONFIG_E1000E=y | 62 | CONFIG_E1000E=y |
62 | # CONFIG_NETDEV_10000 is not set | 63 | # CONFIG_NETDEV_10000 is not set |
63 | # CONFIG_INPUT is not set | 64 | # CONFIG_INPUT is not set |
diff --git a/arch/powerpc/configs/44x/sam440ep_defconfig b/arch/powerpc/configs/44x/sam440ep_defconfig index dfcffede16ad..ca088cd581af 100644 --- a/arch/powerpc/configs/44x/sam440ep_defconfig +++ b/arch/powerpc/configs/44x/sam440ep_defconfig | |||
@@ -44,8 +44,9 @@ CONFIG_ATA=y | |||
44 | # CONFIG_SATA_PMP is not set | 44 | # CONFIG_SATA_PMP is not set |
45 | CONFIG_SATA_SIL=y | 45 | CONFIG_SATA_SIL=y |
46 | CONFIG_NETDEVICES=y | 46 | CONFIG_NETDEVICES=y |
47 | CONFIG_NET_ETHERNET=y | 47 | CONFIG_ETHERNET=y |
48 | CONFIG_IBM_NEW_EMAC=y | 48 | CONFIG_NET_VENDOR_IBM=y |
49 | CONFIG_IBM_EMAC=y | ||
49 | # CONFIG_NETDEV_1000 is not set | 50 | # CONFIG_NETDEV_1000 is not set |
50 | # CONFIG_NETDEV_10000 is not set | 51 | # CONFIG_NETDEV_10000 is not set |
51 | CONFIG_INPUT_FF_MEMLESS=m | 52 | CONFIG_INPUT_FF_MEMLESS=m |
diff --git a/arch/powerpc/configs/44x/sequoia_defconfig b/arch/powerpc/configs/44x/sequoia_defconfig index 47e399f2892f..b7a653b626db 100644 --- a/arch/powerpc/configs/44x/sequoia_defconfig +++ b/arch/powerpc/configs/44x/sequoia_defconfig | |||
@@ -46,8 +46,9 @@ CONFIG_PROC_DEVICETREE=y | |||
46 | CONFIG_BLK_DEV_RAM=y | 46 | CONFIG_BLK_DEV_RAM=y |
47 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 47 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
48 | CONFIG_NETDEVICES=y | 48 | CONFIG_NETDEVICES=y |
49 | CONFIG_NET_ETHERNET=y | 49 | CONFIG_ETHERNET=y |
50 | CONFIG_IBM_NEW_EMAC=y | 50 | CONFIG_NET_VENDOR_IBM=y |
51 | CONFIG_IBM_EMAC=y | ||
51 | # CONFIG_INPUT is not set | 52 | # CONFIG_INPUT is not set |
52 | # CONFIG_SERIO is not set | 53 | # CONFIG_SERIO is not set |
53 | # CONFIG_VT is not set | 54 | # CONFIG_VT is not set |
diff --git a/arch/powerpc/configs/44x/taishan_defconfig b/arch/powerpc/configs/44x/taishan_defconfig index a6a002ed5681..30de97f158a4 100644 --- a/arch/powerpc/configs/44x/taishan_defconfig +++ b/arch/powerpc/configs/44x/taishan_defconfig | |||
@@ -40,8 +40,9 @@ CONFIG_BLK_DEV_RAM=y | |||
40 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 40 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
41 | CONFIG_MACINTOSH_DRIVERS=y | 41 | CONFIG_MACINTOSH_DRIVERS=y |
42 | CONFIG_NETDEVICES=y | 42 | CONFIG_NETDEVICES=y |
43 | CONFIG_NET_ETHERNET=y | 43 | CONFIG_ETHERNET=y |
44 | CONFIG_IBM_NEW_EMAC=y | 44 | CONFIG_NET_VENDOR_IBM=y |
45 | CONFIG_IBM_EMAC=y | ||
45 | # CONFIG_INPUT is not set | 46 | # CONFIG_INPUT is not set |
46 | # CONFIG_SERIO is not set | 47 | # CONFIG_SERIO is not set |
47 | # CONFIG_VT is not set | 48 | # CONFIG_VT is not set |
diff --git a/arch/powerpc/configs/44x/warp_defconfig b/arch/powerpc/configs/44x/warp_defconfig index abf74dc1f79c..105bc56f4b2b 100644 --- a/arch/powerpc/configs/44x/warp_defconfig +++ b/arch/powerpc/configs/44x/warp_defconfig | |||
@@ -54,9 +54,10 @@ CONFIG_BLK_DEV_SD=y | |||
54 | CONFIG_SCSI_SPI_ATTRS=y | 54 | CONFIG_SCSI_SPI_ATTRS=y |
55 | # CONFIG_SCSI_LOWLEVEL is not set | 55 | # CONFIG_SCSI_LOWLEVEL is not set |
56 | CONFIG_NETDEVICES=y | 56 | CONFIG_NETDEVICES=y |
57 | CONFIG_NET_ETHERNET=y | 57 | CONFIG_ETHERNET=y |
58 | CONFIG_NET_VENDOR_IBM=y | ||
58 | CONFIG_MII=y | 59 | CONFIG_MII=y |
59 | CONFIG_IBM_NEW_EMAC=y | 60 | CONFIG_IBM_EMAC=y |
60 | # CONFIG_NETDEV_1000 is not set | 61 | # CONFIG_NETDEV_1000 is not set |
61 | # CONFIG_NETDEV_10000 is not set | 62 | # CONFIG_NETDEV_10000 is not set |
62 | # CONFIG_INPUT is not set | 63 | # CONFIG_INPUT is not set |
diff --git a/arch/powerpc/configs/52xx/tqm5200_defconfig b/arch/powerpc/configs/52xx/tqm5200_defconfig index 959cd2cfc275..716a37be16e3 100644 --- a/arch/powerpc/configs/52xx/tqm5200_defconfig +++ b/arch/powerpc/configs/52xx/tqm5200_defconfig | |||
@@ -1,9 +1,10 @@ | |||
1 | CONFIG_EXPERIMENTAL=y | 1 | CONFIG_EXPERIMENTAL=y |
2 | CONFIG_SYSVIPC=y | 2 | CONFIG_SYSVIPC=y |
3 | CONFIG_SPARSE_IRQ=y | ||
3 | CONFIG_LOG_BUF_SHIFT=14 | 4 | CONFIG_LOG_BUF_SHIFT=14 |
4 | CONFIG_BLK_DEV_INITRD=y | 5 | CONFIG_BLK_DEV_INITRD=y |
5 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 6 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
6 | CONFIG_EXPERT=y | 7 | CONFIG_EMBEDDED=y |
7 | # CONFIG_SYSCTL_SYSCALL is not set | 8 | # CONFIG_SYSCTL_SYSCALL is not set |
8 | # CONFIG_KALLSYMS is not set | 9 | # CONFIG_KALLSYMS is not set |
9 | # CONFIG_EPOLL is not set | 10 | # CONFIG_EPOLL is not set |
@@ -17,7 +18,6 @@ CONFIG_PPC_MPC5200_SIMPLE=y | |||
17 | CONFIG_PPC_MPC5200_BUGFIX=y | 18 | CONFIG_PPC_MPC5200_BUGFIX=y |
18 | # CONFIG_PPC_PMAC is not set | 19 | # CONFIG_PPC_PMAC is not set |
19 | CONFIG_PPC_BESTCOMM=y | 20 | CONFIG_PPC_BESTCOMM=y |
20 | CONFIG_SPARSE_IRQ=y | ||
21 | CONFIG_PM=y | 21 | CONFIG_PM=y |
22 | # CONFIG_PCI is not set | 22 | # CONFIG_PCI is not set |
23 | CONFIG_NET=y | 23 | CONFIG_NET=y |
@@ -38,17 +38,18 @@ CONFIG_MTD=y | |||
38 | CONFIG_MTD_CONCAT=y | 38 | CONFIG_MTD_CONCAT=y |
39 | CONFIG_MTD_PARTITIONS=y | 39 | CONFIG_MTD_PARTITIONS=y |
40 | CONFIG_MTD_CMDLINE_PARTS=y | 40 | CONFIG_MTD_CMDLINE_PARTS=y |
41 | CONFIG_MTD_OF_PARTS=y | ||
41 | CONFIG_MTD_CHAR=y | 42 | CONFIG_MTD_CHAR=y |
42 | CONFIG_MTD_BLOCK=y | 43 | CONFIG_MTD_BLOCK=y |
43 | CONFIG_MTD_CFI=y | 44 | CONFIG_MTD_CFI=y |
44 | CONFIG_MTD_CFI_AMDSTD=y | 45 | CONFIG_MTD_CFI_AMDSTD=y |
45 | CONFIG_MTD_ROM=y | 46 | CONFIG_MTD_ROM=y |
46 | CONFIG_MTD_PHYSMAP_OF=y | 47 | CONFIG_MTD_PHYSMAP_OF=y |
48 | CONFIG_MTD_PLATRAM=y | ||
47 | CONFIG_PROC_DEVICETREE=y | 49 | CONFIG_PROC_DEVICETREE=y |
48 | CONFIG_BLK_DEV_LOOP=y | 50 | CONFIG_BLK_DEV_LOOP=y |
49 | CONFIG_BLK_DEV_RAM=y | 51 | CONFIG_BLK_DEV_RAM=y |
50 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 52 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
51 | # CONFIG_MISC_DEVICES is not set | ||
52 | CONFIG_BLK_DEV_SD=y | 53 | CONFIG_BLK_DEV_SD=y |
53 | CONFIG_CHR_DEV_SG=y | 54 | CONFIG_CHR_DEV_SG=y |
54 | CONFIG_ATA=y | 55 | CONFIG_ATA=y |
@@ -56,13 +57,11 @@ CONFIG_PATA_MPC52xx=y | |||
56 | CONFIG_PATA_PLATFORM=y | 57 | CONFIG_PATA_PLATFORM=y |
57 | CONFIG_NETDEVICES=y | 58 | CONFIG_NETDEVICES=y |
58 | CONFIG_LXT_PHY=y | 59 | CONFIG_LXT_PHY=y |
60 | CONFIG_FIXED_PHY=y | ||
59 | CONFIG_NET_ETHERNET=y | 61 | CONFIG_NET_ETHERNET=y |
60 | CONFIG_FEC_MPC52xx=y | 62 | CONFIG_FEC_MPC52xx=y |
61 | # CONFIG_NETDEV_1000 is not set | 63 | # CONFIG_NETDEV_1000 is not set |
62 | # CONFIG_NETDEV_10000 is not set | 64 | # CONFIG_NETDEV_10000 is not set |
63 | # CONFIG_INPUT is not set | ||
64 | # CONFIG_SERIO is not set | ||
65 | # CONFIG_VT is not set | ||
66 | CONFIG_SERIAL_MPC52xx=y | 65 | CONFIG_SERIAL_MPC52xx=y |
67 | CONFIG_SERIAL_MPC52xx_CONSOLE=y | 66 | CONFIG_SERIAL_MPC52xx_CONSOLE=y |
68 | CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD=115200 | 67 | CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD=115200 |
@@ -70,7 +69,13 @@ CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD=115200 | |||
70 | CONFIG_I2C=y | 69 | CONFIG_I2C=y |
71 | CONFIG_I2C_CHARDEV=y | 70 | CONFIG_I2C_CHARDEV=y |
72 | CONFIG_I2C_MPC=y | 71 | CONFIG_I2C_MPC=y |
72 | CONFIG_SENSORS_LM80=y | ||
73 | CONFIG_WATCHDOG=y | 73 | CONFIG_WATCHDOG=y |
74 | CONFIG_MFD_SM501=y | ||
75 | CONFIG_FB=y | ||
76 | CONFIG_FB_FOREIGN_ENDIAN=y | ||
77 | CONFIG_FB_SM501=y | ||
78 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
74 | CONFIG_USB=y | 79 | CONFIG_USB=y |
75 | CONFIG_USB_DEVICEFS=y | 80 | CONFIG_USB_DEVICEFS=y |
76 | # CONFIG_USB_DEVICE_CLASS is not set | 81 | # CONFIG_USB_DEVICE_CLASS is not set |
@@ -80,10 +85,10 @@ CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | |||
80 | CONFIG_USB_STORAGE=y | 85 | CONFIG_USB_STORAGE=y |
81 | CONFIG_RTC_CLASS=y | 86 | CONFIG_RTC_CLASS=y |
82 | CONFIG_RTC_DRV_DS1307=y | 87 | CONFIG_RTC_DRV_DS1307=y |
88 | CONFIG_RTC_DRV_DS1374=y | ||
83 | CONFIG_EXT2_FS=y | 89 | CONFIG_EXT2_FS=y |
84 | CONFIG_EXT3_FS=y | 90 | CONFIG_EXT3_FS=y |
85 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | 91 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set |
86 | CONFIG_INOTIFY=y | ||
87 | CONFIG_MSDOS_FS=y | 92 | CONFIG_MSDOS_FS=y |
88 | CONFIG_VFAT_FS=y | 93 | CONFIG_VFAT_FS=y |
89 | CONFIG_PROC_KCORE=y | 94 | CONFIG_PROC_KCORE=y |
@@ -102,7 +107,6 @@ CONFIG_DEBUG_KERNEL=y | |||
102 | CONFIG_DETECT_HUNG_TASK=y | 107 | CONFIG_DETECT_HUNG_TASK=y |
103 | # CONFIG_DEBUG_BUGVERBOSE is not set | 108 | # CONFIG_DEBUG_BUGVERBOSE is not set |
104 | CONFIG_DEBUG_INFO=y | 109 | CONFIG_DEBUG_INFO=y |
105 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
106 | CONFIG_CRYPTO_ECB=y | 110 | CONFIG_CRYPTO_ECB=y |
107 | CONFIG_CRYPTO_PCBC=y | 111 | CONFIG_CRYPTO_PCBC=y |
108 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 112 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
diff --git a/arch/powerpc/configs/85xx/p1023rds_defconfig b/arch/powerpc/configs/85xx/p1023rds_defconfig index 3ff5a81c709f..c091aaf7685f 100644 --- a/arch/powerpc/configs/85xx/p1023rds_defconfig +++ b/arch/powerpc/configs/85xx/p1023rds_defconfig | |||
@@ -24,7 +24,7 @@ CONFIG_P1023_RDS=y | |||
24 | CONFIG_QUICC_ENGINE=y | 24 | CONFIG_QUICC_ENGINE=y |
25 | CONFIG_QE_GPIO=y | 25 | CONFIG_QE_GPIO=y |
26 | CONFIG_CPM2=y | 26 | CONFIG_CPM2=y |
27 | CONFIG_MPC8xxx_GPIO=y | 27 | CONFIG_GPIO_MPC8XXX=y |
28 | CONFIG_HIGHMEM=y | 28 | CONFIG_HIGHMEM=y |
29 | CONFIG_NO_HZ=y | 29 | CONFIG_NO_HZ=y |
30 | CONFIG_HIGH_RES_TIMERS=y | 30 | CONFIG_HIGH_RES_TIMERS=y |
diff --git a/arch/powerpc/configs/85xx/xes_mpc85xx_defconfig b/arch/powerpc/configs/85xx/xes_mpc85xx_defconfig index 5ea3124518fd..1cd6fcb368e9 100644 --- a/arch/powerpc/configs/85xx/xes_mpc85xx_defconfig +++ b/arch/powerpc/configs/85xx/xes_mpc85xx_defconfig | |||
@@ -20,7 +20,7 @@ CONFIG_MODULE_FORCE_UNLOAD=y | |||
20 | CONFIG_MODVERSIONS=y | 20 | CONFIG_MODVERSIONS=y |
21 | # CONFIG_BLK_DEV_BSG is not set | 21 | # CONFIG_BLK_DEV_BSG is not set |
22 | CONFIG_XES_MPC85xx=y | 22 | CONFIG_XES_MPC85xx=y |
23 | CONFIG_MPC8xxx_GPIO=y | 23 | CONFIG_GPIO_MPC8XXX=y |
24 | CONFIG_HIGHMEM=y | 24 | CONFIG_HIGHMEM=y |
25 | CONFIG_MATH_EMULATION=y | 25 | CONFIG_MATH_EMULATION=y |
26 | CONFIG_SPARSE_IRQ=y | 26 | CONFIG_SPARSE_IRQ=y |
diff --git a/arch/powerpc/configs/corenet32_smp_defconfig b/arch/powerpc/configs/corenet32_smp_defconfig index 4311d02a3bfd..f087de6ec03f 100644 --- a/arch/powerpc/configs/corenet32_smp_defconfig +++ b/arch/powerpc/configs/corenet32_smp_defconfig | |||
@@ -12,9 +12,7 @@ CONFIG_IKCONFIG=y | |||
12 | CONFIG_IKCONFIG_PROC=y | 12 | CONFIG_IKCONFIG_PROC=y |
13 | CONFIG_LOG_BUF_SHIFT=14 | 13 | CONFIG_LOG_BUF_SHIFT=14 |
14 | CONFIG_BLK_DEV_INITRD=y | 14 | CONFIG_BLK_DEV_INITRD=y |
15 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
16 | CONFIG_KALLSYMS_ALL=y | 15 | CONFIG_KALLSYMS_ALL=y |
17 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
18 | CONFIG_EMBEDDED=y | 16 | CONFIG_EMBEDDED=y |
19 | CONFIG_PERF_EVENTS=y | 17 | CONFIG_PERF_EVENTS=y |
20 | CONFIG_SLAB=y | 18 | CONFIG_SLAB=y |
@@ -23,8 +21,9 @@ CONFIG_MODULE_UNLOAD=y | |||
23 | CONFIG_MODULE_FORCE_UNLOAD=y | 21 | CONFIG_MODULE_FORCE_UNLOAD=y |
24 | CONFIG_MODVERSIONS=y | 22 | CONFIG_MODVERSIONS=y |
25 | # CONFIG_BLK_DEV_BSG is not set | 23 | # CONFIG_BLK_DEV_BSG is not set |
26 | CONFIG_P2040_RDB=y | 24 | CONFIG_P2041_RDB=y |
27 | CONFIG_P3041_DS=y | 25 | CONFIG_P3041_DS=y |
26 | CONFIG_P3060_QDS=y | ||
28 | CONFIG_P4080_DS=y | 27 | CONFIG_P4080_DS=y |
29 | CONFIG_P5020_DS=y | 28 | CONFIG_P5020_DS=y |
30 | CONFIG_HIGHMEM=y | 29 | CONFIG_HIGHMEM=y |
@@ -69,7 +68,6 @@ CONFIG_IPV6=y | |||
69 | CONFIG_IP_SCTP=m | 68 | CONFIG_IP_SCTP=m |
70 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 69 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
71 | CONFIG_MTD=y | 70 | CONFIG_MTD=y |
72 | CONFIG_MTD_PARTITIONS=y | ||
73 | CONFIG_MTD_CMDLINE_PARTS=y | 71 | CONFIG_MTD_CMDLINE_PARTS=y |
74 | CONFIG_MTD_CHAR=y | 72 | CONFIG_MTD_CHAR=y |
75 | CONFIG_MTD_BLOCK=y | 73 | CONFIG_MTD_BLOCK=y |
@@ -107,7 +105,6 @@ CONFIG_FSL_PQ_MDIO=y | |||
107 | # CONFIG_INPUT_MOUSE is not set | 105 | # CONFIG_INPUT_MOUSE is not set |
108 | CONFIG_SERIO_LIBPS2=y | 106 | CONFIG_SERIO_LIBPS2=y |
109 | # CONFIG_LEGACY_PTYS is not set | 107 | # CONFIG_LEGACY_PTYS is not set |
110 | CONFIG_PPC_EPAPR_HV_BYTECHAN=y | ||
111 | CONFIG_SERIAL_8250=y | 108 | CONFIG_SERIAL_8250=y |
112 | CONFIG_SERIAL_8250_CONSOLE=y | 109 | CONFIG_SERIAL_8250_CONSOLE=y |
113 | CONFIG_SERIAL_8250_EXTENDED=y | 110 | CONFIG_SERIAL_8250_EXTENDED=y |
@@ -136,8 +133,6 @@ CONFIG_USB_OHCI_HCD_PPC_OF_LE=y | |||
136 | CONFIG_USB_STORAGE=y | 133 | CONFIG_USB_STORAGE=y |
137 | CONFIG_MMC=y | 134 | CONFIG_MMC=y |
138 | CONFIG_MMC_SDHCI=y | 135 | CONFIG_MMC_SDHCI=y |
139 | CONFIG_MMC_SDHCI_OF=y | ||
140 | CONFIG_MMC_SDHCI_OF_ESDHC=y | ||
141 | CONFIG_EDAC=y | 136 | CONFIG_EDAC=y |
142 | CONFIG_EDAC_MM_EDAC=y | 137 | CONFIG_EDAC_MM_EDAC=y |
143 | CONFIG_EDAC_MPC85XX=y | 138 | CONFIG_EDAC_MPC85XX=y |
@@ -146,7 +141,6 @@ CONFIG_RTC_DRV_DS3232=y | |||
146 | CONFIG_RTC_DRV_CMOS=y | 141 | CONFIG_RTC_DRV_CMOS=y |
147 | CONFIG_UIO=y | 142 | CONFIG_UIO=y |
148 | CONFIG_STAGING=y | 143 | CONFIG_STAGING=y |
149 | # CONFIG_STAGING_EXCLUDE_BUILD is not set | ||
150 | CONFIG_VIRT_DRIVERS=y | 144 | CONFIG_VIRT_DRIVERS=y |
151 | CONFIG_FSL_HV_MANAGER=y | 145 | CONFIG_FSL_HV_MANAGER=y |
152 | CONFIG_EXT2_FS=y | 146 | CONFIG_EXT2_FS=y |
@@ -173,7 +167,6 @@ CONFIG_MAC_PARTITION=y | |||
173 | CONFIG_NLS_ISO8859_1=y | 167 | CONFIG_NLS_ISO8859_1=y |
174 | CONFIG_NLS_UTF8=m | 168 | CONFIG_NLS_UTF8=m |
175 | CONFIG_MAGIC_SYSRQ=y | 169 | CONFIG_MAGIC_SYSRQ=y |
176 | CONFIG_DEBUG_KERNEL=y | ||
177 | CONFIG_DEBUG_SHIRQ=y | 170 | CONFIG_DEBUG_SHIRQ=y |
178 | CONFIG_DETECT_HUNG_TASK=y | 171 | CONFIG_DETECT_HUNG_TASK=y |
179 | CONFIG_DEBUG_INFO=y | 172 | CONFIG_DEBUG_INFO=y |
diff --git a/arch/powerpc/configs/corenet64_smp_defconfig b/arch/powerpc/configs/corenet64_smp_defconfig index c92c204a204b..782822c32d15 100644 --- a/arch/powerpc/configs/corenet64_smp_defconfig +++ b/arch/powerpc/configs/corenet64_smp_defconfig | |||
@@ -11,10 +11,8 @@ CONFIG_IKCONFIG=y | |||
11 | CONFIG_IKCONFIG_PROC=y | 11 | CONFIG_IKCONFIG_PROC=y |
12 | CONFIG_LOG_BUF_SHIFT=14 | 12 | CONFIG_LOG_BUF_SHIFT=14 |
13 | CONFIG_BLK_DEV_INITRD=y | 13 | CONFIG_BLK_DEV_INITRD=y |
14 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
15 | CONFIG_EXPERT=y | 14 | CONFIG_EXPERT=y |
16 | CONFIG_KALLSYMS_ALL=y | 15 | CONFIG_KALLSYMS_ALL=y |
17 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
18 | CONFIG_MODULES=y | 16 | CONFIG_MODULES=y |
19 | CONFIG_MODULE_UNLOAD=y | 17 | CONFIG_MODULE_UNLOAD=y |
20 | CONFIG_MODULE_FORCE_UNLOAD=y | 18 | CONFIG_MODULE_FORCE_UNLOAD=y |
@@ -25,7 +23,6 @@ CONFIG_P5020_DS=y | |||
25 | CONFIG_NO_HZ=y | 23 | CONFIG_NO_HZ=y |
26 | CONFIG_HIGH_RES_TIMERS=y | 24 | CONFIG_HIGH_RES_TIMERS=y |
27 | CONFIG_BINFMT_MISC=m | 25 | CONFIG_BINFMT_MISC=m |
28 | # CONFIG_PCI is not set | ||
29 | CONFIG_NET=y | 26 | CONFIG_NET=y |
30 | CONFIG_PACKET=y | 27 | CONFIG_PACKET=y |
31 | CONFIG_UNIX=y | 28 | CONFIG_UNIX=y |
@@ -93,10 +90,8 @@ CONFIG_CRC_T10DIF=y | |||
93 | CONFIG_CRC_ITU_T=m | 90 | CONFIG_CRC_ITU_T=m |
94 | CONFIG_FRAME_WARN=1024 | 91 | CONFIG_FRAME_WARN=1024 |
95 | CONFIG_DEBUG_FS=y | 92 | CONFIG_DEBUG_FS=y |
96 | CONFIG_DEBUG_KERNEL=y | ||
97 | CONFIG_DETECT_HUNG_TASK=y | 93 | CONFIG_DETECT_HUNG_TASK=y |
98 | CONFIG_DEBUG_INFO=y | 94 | CONFIG_DEBUG_INFO=y |
99 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
100 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
101 | CONFIG_VIRQ_DEBUG=y | 96 | CONFIG_VIRQ_DEBUG=y |
102 | CONFIG_CRYPTO_PCBC=m | 97 | CONFIG_CRYPTO_PCBC=m |
diff --git a/arch/powerpc/configs/mgcoge_defconfig b/arch/powerpc/configs/mgcoge_defconfig index 6cb588a7d425..0d36b0e1e268 100644 --- a/arch/powerpc/configs/mgcoge_defconfig +++ b/arch/powerpc/configs/mgcoge_defconfig | |||
@@ -1,15 +1,22 @@ | |||
1 | CONFIG_EXPERIMENTAL=y | ||
2 | # CONFIG_SWAP is not set | ||
1 | CONFIG_SYSVIPC=y | 3 | CONFIG_SYSVIPC=y |
4 | CONFIG_POSIX_MQUEUE=y | ||
2 | CONFIG_SPARSE_IRQ=y | 5 | CONFIG_SPARSE_IRQ=y |
3 | CONFIG_IKCONFIG=y | 6 | CONFIG_IKCONFIG=y |
4 | CONFIG_IKCONFIG_PROC=y | 7 | CONFIG_IKCONFIG_PROC=y |
5 | CONFIG_LOG_BUF_SHIFT=14 | 8 | CONFIG_LOG_BUF_SHIFT=14 |
6 | CONFIG_BLK_DEV_INITRD=y | 9 | CONFIG_BLK_DEV_INITRD=y |
7 | CONFIG_EXPERT=y | 10 | # CONFIG_RD_GZIP is not set |
8 | CONFIG_KALLSYMS_ALL=y | 11 | CONFIG_KALLSYMS_ALL=y |
12 | # CONFIG_PCSPKR_PLATFORM is not set | ||
13 | CONFIG_EMBEDDED=y | ||
9 | CONFIG_SLAB=y | 14 | CONFIG_SLAB=y |
10 | # CONFIG_IOSCHED_CFQ is not set | 15 | # CONFIG_IOSCHED_CFQ is not set |
16 | # CONFIG_PPC_PMAC is not set | ||
11 | CONFIG_PPC_82xx=y | 17 | CONFIG_PPC_82xx=y |
12 | CONFIG_MGCOGE=y | 18 | CONFIG_MGCOGE=y |
19 | CONFIG_HIGH_RES_TIMERS=y | ||
13 | CONFIG_BINFMT_MISC=y | 20 | CONFIG_BINFMT_MISC=y |
14 | # CONFIG_SECCOMP is not set | 21 | # CONFIG_SECCOMP is not set |
15 | CONFIG_NET=y | 22 | CONFIG_NET=y |
@@ -24,11 +31,10 @@ CONFIG_SYN_COOKIES=y | |||
24 | # CONFIG_INET_LRO is not set | 31 | # CONFIG_INET_LRO is not set |
25 | # CONFIG_IPV6 is not set | 32 | # CONFIG_IPV6 is not set |
26 | CONFIG_NETFILTER=y | 33 | CONFIG_NETFILTER=y |
34 | CONFIG_TIPC=y | ||
27 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 35 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
28 | # CONFIG_FW_LOADER is not set | 36 | # CONFIG_FW_LOADER is not set |
29 | CONFIG_MTD=y | 37 | CONFIG_MTD=y |
30 | CONFIG_MTD_CONCAT=y | ||
31 | CONFIG_MTD_PARTITIONS=y | ||
32 | CONFIG_MTD_CMDLINE_PARTS=y | 38 | CONFIG_MTD_CMDLINE_PARTS=y |
33 | CONFIG_MTD_CHAR=y | 39 | CONFIG_MTD_CHAR=y |
34 | CONFIG_MTD_BLKDEVS=y | 40 | CONFIG_MTD_BLKDEVS=y |
@@ -42,7 +48,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
42 | CONFIG_PROC_DEVICETREE=y | 48 | CONFIG_PROC_DEVICETREE=y |
43 | CONFIG_BLK_DEV_LOOP=y | 49 | CONFIG_BLK_DEV_LOOP=y |
44 | CONFIG_BLK_DEV_RAM=y | 50 | CONFIG_BLK_DEV_RAM=y |
45 | # CONFIG_MACINTOSH_DRIVERS is not set | ||
46 | CONFIG_NETDEVICES=y | 51 | CONFIG_NETDEVICES=y |
47 | CONFIG_FIXED_PHY=y | 52 | CONFIG_FIXED_PHY=y |
48 | CONFIG_NET_ETHERNET=y | 53 | CONFIG_NET_ETHERNET=y |
@@ -50,6 +55,7 @@ CONFIG_FS_ENET=y | |||
50 | CONFIG_FS_ENET_MDIO_FCC=y | 55 | CONFIG_FS_ENET_MDIO_FCC=y |
51 | # CONFIG_NETDEV_1000 is not set | 56 | # CONFIG_NETDEV_1000 is not set |
52 | # CONFIG_NETDEV_10000 is not set | 57 | # CONFIG_NETDEV_10000 is not set |
58 | # CONFIG_WLAN is not set | ||
53 | # CONFIG_INPUT is not set | 59 | # CONFIG_INPUT is not set |
54 | # CONFIG_SERIO is not set | 60 | # CONFIG_SERIO is not set |
55 | # CONFIG_VT is not set | 61 | # CONFIG_VT is not set |
@@ -57,24 +63,24 @@ CONFIG_SERIAL_CPM=y | |||
57 | CONFIG_SERIAL_CPM_CONSOLE=y | 63 | CONFIG_SERIAL_CPM_CONSOLE=y |
58 | CONFIG_I2C=y | 64 | CONFIG_I2C=y |
59 | CONFIG_I2C_CHARDEV=y | 65 | CONFIG_I2C_CHARDEV=y |
60 | # CONFIG_I2C_POWERMAC is not set | ||
61 | CONFIG_I2C_CPM=y | 66 | CONFIG_I2C_CPM=y |
62 | # CONFIG_HWMON is not set | 67 | # CONFIG_HWMON is not set |
63 | # CONFIG_USB_SUPPORT is not set | 68 | CONFIG_USB_GADGET=y |
69 | CONFIG_USB_FSL_USB2=y | ||
70 | CONFIG_USB_G_SERIAL=y | ||
71 | CONFIG_UIO=y | ||
72 | CONFIG_UIO_PDRV=y | ||
64 | CONFIG_EXT2_FS=y | 73 | CONFIG_EXT2_FS=y |
65 | CONFIG_EXT3_FS=y | ||
66 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
67 | # CONFIG_EXT3_FS_XATTR is not set | ||
68 | CONFIG_AUTOFS4_FS=y | 74 | CONFIG_AUTOFS4_FS=y |
69 | CONFIG_PROC_KCORE=y | 75 | CONFIG_PROC_KCORE=y |
70 | CONFIG_TMPFS=y | 76 | CONFIG_TMPFS=y |
71 | CONFIG_JFFS2_FS=y | 77 | CONFIG_JFFS2_FS=y |
72 | CONFIG_CRAMFS=y | 78 | CONFIG_CRAMFS=y |
79 | CONFIG_SQUASHFS=y | ||
73 | CONFIG_NFS_FS=y | 80 | CONFIG_NFS_FS=y |
74 | CONFIG_NFS_V3=y | 81 | CONFIG_NFS_V3=y |
75 | CONFIG_ROOT_NFS=y | 82 | CONFIG_ROOT_NFS=y |
76 | CONFIG_PARTITION_ADVANCED=y | 83 | CONFIG_PARTITION_ADVANCED=y |
77 | # CONFIG_MAC_PARTITION is not set | ||
78 | CONFIG_NLS=y | 84 | CONFIG_NLS=y |
79 | CONFIG_NLS_CODEPAGE_437=y | 85 | CONFIG_NLS_CODEPAGE_437=y |
80 | CONFIG_NLS_ASCII=y | 86 | CONFIG_NLS_ASCII=y |
@@ -82,7 +88,6 @@ CONFIG_NLS_ISO8859_1=y | |||
82 | CONFIG_NLS_UTF8=y | 88 | CONFIG_NLS_UTF8=y |
83 | CONFIG_MAGIC_SYSRQ=y | 89 | CONFIG_MAGIC_SYSRQ=y |
84 | CONFIG_DEBUG_FS=y | 90 | CONFIG_DEBUG_FS=y |
85 | CONFIG_DEBUG_KERNEL=y | ||
86 | # CONFIG_SCHED_DEBUG is not set | 91 | # CONFIG_SCHED_DEBUG is not set |
87 | CONFIG_DEBUG_INFO=y | 92 | CONFIG_DEBUG_INFO=y |
88 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 93 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
diff --git a/arch/powerpc/configs/mpc512x_defconfig b/arch/powerpc/configs/mpc512x_defconfig index c02bbb2fddf8..211fcc9ed700 100644 --- a/arch/powerpc/configs/mpc512x_defconfig +++ b/arch/powerpc/configs/mpc512x_defconfig | |||
@@ -1,9 +1,9 @@ | |||
1 | CONFIG_EXPERIMENTAL=y | 1 | CONFIG_EXPERIMENTAL=y |
2 | # CONFIG_SWAP is not set | 2 | # CONFIG_SWAP is not set |
3 | CONFIG_SYSVIPC=y | 3 | CONFIG_SYSVIPC=y |
4 | CONFIG_SPARSE_IRQ=y | ||
4 | CONFIG_LOG_BUF_SHIFT=16 | 5 | CONFIG_LOG_BUF_SHIFT=16 |
5 | CONFIG_BLK_DEV_INITRD=y | 6 | CONFIG_BLK_DEV_INITRD=y |
6 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
7 | # CONFIG_COMPAT_BRK is not set | 7 | # CONFIG_COMPAT_BRK is not set |
8 | CONFIG_SLAB=y | 8 | CONFIG_SLAB=y |
9 | CONFIG_MODULES=y | 9 | CONFIG_MODULES=y |
@@ -13,10 +13,11 @@ CONFIG_MODULE_UNLOAD=y | |||
13 | # CONFIG_PPC_CHRP is not set | 13 | # CONFIG_PPC_CHRP is not set |
14 | CONFIG_PPC_MPC512x=y | 14 | CONFIG_PPC_MPC512x=y |
15 | CONFIG_MPC5121_ADS=y | 15 | CONFIG_MPC5121_ADS=y |
16 | CONFIG_MPC5121_GENERIC=y | ||
17 | CONFIG_PDM360NG=y | ||
16 | # CONFIG_PPC_PMAC is not set | 18 | # CONFIG_PPC_PMAC is not set |
17 | CONFIG_NO_HZ=y | 19 | CONFIG_NO_HZ=y |
18 | CONFIG_HZ_1000=y | 20 | CONFIG_HZ_1000=y |
19 | CONFIG_SPARSE_IRQ=y | ||
20 | # CONFIG_MIGRATION is not set | 21 | # CONFIG_MIGRATION is not set |
21 | # CONFIG_SECCOMP is not set | 22 | # CONFIG_SECCOMP is not set |
22 | # CONFIG_PCI is not set | 23 | # CONFIG_PCI is not set |
@@ -35,18 +36,16 @@ CONFIG_CAN=y | |||
35 | CONFIG_CAN_RAW=y | 36 | CONFIG_CAN_RAW=y |
36 | CONFIG_CAN_BCM=y | 37 | CONFIG_CAN_BCM=y |
37 | CONFIG_CAN_VCAN=y | 38 | CONFIG_CAN_VCAN=y |
38 | CONFIG_CAN_DEV=y | ||
39 | CONFIG_CAN_MSCAN=y | 39 | CONFIG_CAN_MSCAN=y |
40 | CONFIG_CAN_DEBUG_DEVICES=y | 40 | CONFIG_CAN_DEBUG_DEVICES=y |
41 | # CONFIG_WIRELESS is not set | 41 | # CONFIG_WIRELESS is not set |
42 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 42 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
43 | CONFIG_DEVTMPFS=y | ||
44 | CONFIG_DEVTMPFS_MOUNT=y | ||
43 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | 45 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set |
44 | # CONFIG_FIRMWARE_IN_KERNEL is not set | 46 | # CONFIG_FIRMWARE_IN_KERNEL is not set |
45 | CONFIG_MTD=y | 47 | CONFIG_MTD=y |
46 | CONFIG_MTD_CONCAT=y | ||
47 | CONFIG_MTD_PARTITIONS=y | ||
48 | CONFIG_MTD_CMDLINE_PARTS=y | 48 | CONFIG_MTD_CMDLINE_PARTS=y |
49 | CONFIG_MTD_OF_PARTS=y | ||
50 | CONFIG_MTD_CHAR=y | 49 | CONFIG_MTD_CHAR=y |
51 | CONFIG_MTD_BLOCK=y | 50 | CONFIG_MTD_BLOCK=y |
52 | CONFIG_MTD_CFI=y | 51 | CONFIG_MTD_CFI=y |
@@ -63,6 +62,7 @@ CONFIG_BLK_DEV_RAM_SIZE=8192 | |||
63 | CONFIG_BLK_DEV_XIP=y | 62 | CONFIG_BLK_DEV_XIP=y |
64 | CONFIG_MISC_DEVICES=y | 63 | CONFIG_MISC_DEVICES=y |
65 | CONFIG_EEPROM_AT24=y | 64 | CONFIG_EEPROM_AT24=y |
65 | CONFIG_EEPROM_AT25=y | ||
66 | CONFIG_SCSI=y | 66 | CONFIG_SCSI=y |
67 | # CONFIG_SCSI_PROC_FS is not set | 67 | # CONFIG_SCSI_PROC_FS is not set |
68 | CONFIG_BLK_DEV_SD=y | 68 | CONFIG_BLK_DEV_SD=y |
@@ -99,10 +99,14 @@ CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD=115200 | |||
99 | CONFIG_I2C=y | 99 | CONFIG_I2C=y |
100 | CONFIG_I2C_CHARDEV=y | 100 | CONFIG_I2C_CHARDEV=y |
101 | CONFIG_I2C_MPC=y | 101 | CONFIG_I2C_MPC=y |
102 | CONFIG_SPI=y | ||
103 | CONFIG_SPI_MPC512x_PSC=y | ||
104 | CONFIG_GPIOLIB=y | ||
105 | CONFIG_GPIO_SYSFS=y | ||
106 | CONFIG_GPIO_MPC8XXX=y | ||
102 | # CONFIG_HWMON is not set | 107 | # CONFIG_HWMON is not set |
103 | CONFIG_MEDIA_SUPPORT=y | 108 | CONFIG_MEDIA_SUPPORT=y |
104 | CONFIG_VIDEO_DEV=y | 109 | CONFIG_VIDEO_DEV=y |
105 | # CONFIG_VIDEO_ALLOW_V4L1 is not set | ||
106 | CONFIG_VIDEO_ADV_DEBUG=y | 110 | CONFIG_VIDEO_ADV_DEBUG=y |
107 | # CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set | 111 | # CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set |
108 | CONFIG_VIDEO_SAA711X=y | 112 | CONFIG_VIDEO_SAA711X=y |
@@ -132,6 +136,5 @@ CONFIG_NLS_CODEPAGE_437=y | |||
132 | CONFIG_NLS_ISO8859_1=y | 136 | CONFIG_NLS_ISO8859_1=y |
133 | # CONFIG_ENABLE_WARN_DEPRECATED is not set | 137 | # CONFIG_ENABLE_WARN_DEPRECATED is not set |
134 | # CONFIG_ENABLE_MUST_CHECK is not set | 138 | # CONFIG_ENABLE_MUST_CHECK is not set |
135 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
136 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 139 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
137 | # CONFIG_CRYPTO_HW is not set | 140 | # CONFIG_CRYPTO_HW is not set |
diff --git a/arch/powerpc/configs/mpc5200_defconfig b/arch/powerpc/configs/mpc5200_defconfig index e63f537b854a..2a1320fb2723 100644 --- a/arch/powerpc/configs/mpc5200_defconfig +++ b/arch/powerpc/configs/mpc5200_defconfig | |||
@@ -88,6 +88,18 @@ CONFIG_FB_RADEON=y | |||
88 | # CONFIG_VGA_CONSOLE is not set | 88 | # CONFIG_VGA_CONSOLE is not set |
89 | CONFIG_FRAMEBUFFER_CONSOLE=y | 89 | CONFIG_FRAMEBUFFER_CONSOLE=y |
90 | CONFIG_LOGO=y | 90 | CONFIG_LOGO=y |
91 | CONFIG_SOUND=y | ||
92 | CONFIG_SND=y | ||
93 | # CONFIG_SND_SUPPORT_OLD_API is not set | ||
94 | # CONFIG_SND_DRIVERS is not set | ||
95 | # CONFIG_SND_PCI is not set | ||
96 | # CONFIG_SND_PPC is not set | ||
97 | # CONFIG_SND_SPI is not set | ||
98 | # CONFIG_SND_USB is not set | ||
99 | CONFIG_SND_SOC=y | ||
100 | CONFIG_SND_SOC_MPC5200_I2S=y | ||
101 | CONFIG_SND_MPC52xx_SOC_PCM030=y | ||
102 | CONFIG_SND_MPC52xx_SOC_EFIKA=y | ||
91 | CONFIG_HID_DRAGONRISE=y | 103 | CONFIG_HID_DRAGONRISE=y |
92 | CONFIG_HID_GYRATION=y | 104 | CONFIG_HID_GYRATION=y |
93 | CONFIG_HID_TWINHAN=y | 105 | CONFIG_HID_TWINHAN=y |
diff --git a/arch/powerpc/configs/mpc85xx_defconfig b/arch/powerpc/configs/mpc85xx_defconfig index a3467bfb7671..a1e5a178a4ac 100644 --- a/arch/powerpc/configs/mpc85xx_defconfig +++ b/arch/powerpc/configs/mpc85xx_defconfig | |||
@@ -10,10 +10,8 @@ CONFIG_IKCONFIG=y | |||
10 | CONFIG_IKCONFIG_PROC=y | 10 | CONFIG_IKCONFIG_PROC=y |
11 | CONFIG_LOG_BUF_SHIFT=14 | 11 | CONFIG_LOG_BUF_SHIFT=14 |
12 | CONFIG_BLK_DEV_INITRD=y | 12 | CONFIG_BLK_DEV_INITRD=y |
13 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
14 | CONFIG_EXPERT=y | 13 | CONFIG_EXPERT=y |
15 | CONFIG_KALLSYMS_ALL=y | 14 | CONFIG_KALLSYMS_ALL=y |
16 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
17 | CONFIG_MODULES=y | 15 | CONFIG_MODULES=y |
18 | CONFIG_MODULE_UNLOAD=y | 16 | CONFIG_MODULE_UNLOAD=y |
19 | CONFIG_MODULE_FORCE_UNLOAD=y | 17 | CONFIG_MODULE_FORCE_UNLOAD=y |
@@ -41,7 +39,6 @@ CONFIG_TQM8560=y | |||
41 | CONFIG_SBC8548=y | 39 | CONFIG_SBC8548=y |
42 | CONFIG_QUICC_ENGINE=y | 40 | CONFIG_QUICC_ENGINE=y |
43 | CONFIG_QE_GPIO=y | 41 | CONFIG_QE_GPIO=y |
44 | CONFIG_MPC8xxx_GPIO=y | ||
45 | CONFIG_HIGHMEM=y | 42 | CONFIG_HIGHMEM=y |
46 | CONFIG_NO_HZ=y | 43 | CONFIG_NO_HZ=y |
47 | CONFIG_HIGH_RES_TIMERS=y | 44 | CONFIG_HIGH_RES_TIMERS=y |
@@ -123,6 +120,7 @@ CONFIG_NVRAM=y | |||
123 | CONFIG_I2C=y | 120 | CONFIG_I2C=y |
124 | CONFIG_I2C_CPM=m | 121 | CONFIG_I2C_CPM=m |
125 | CONFIG_I2C_MPC=y | 122 | CONFIG_I2C_MPC=y |
123 | CONFIG_GPIO_MPC8XXX=y | ||
126 | # CONFIG_HWMON is not set | 124 | # CONFIG_HWMON is not set |
127 | CONFIG_VIDEO_OUTPUT_CONTROL=y | 125 | CONFIG_VIDEO_OUTPUT_CONTROL=y |
128 | CONFIG_FB=y | 126 | CONFIG_FB=y |
@@ -206,7 +204,6 @@ CONFIG_PARTITION_ADVANCED=y | |||
206 | CONFIG_MAC_PARTITION=y | 204 | CONFIG_MAC_PARTITION=y |
207 | CONFIG_CRC_T10DIF=y | 205 | CONFIG_CRC_T10DIF=y |
208 | CONFIG_DEBUG_FS=y | 206 | CONFIG_DEBUG_FS=y |
209 | CONFIG_DEBUG_KERNEL=y | ||
210 | CONFIG_DETECT_HUNG_TASK=y | 207 | CONFIG_DETECT_HUNG_TASK=y |
211 | CONFIG_DEBUG_INFO=y | 208 | CONFIG_DEBUG_INFO=y |
212 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 209 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
diff --git a/arch/powerpc/configs/mpc85xx_smp_defconfig b/arch/powerpc/configs/mpc85xx_smp_defconfig index 9693f6ed3da0..dd1e41386c4c 100644 --- a/arch/powerpc/configs/mpc85xx_smp_defconfig +++ b/arch/powerpc/configs/mpc85xx_smp_defconfig | |||
@@ -12,10 +12,8 @@ CONFIG_IKCONFIG=y | |||
12 | CONFIG_IKCONFIG_PROC=y | 12 | CONFIG_IKCONFIG_PROC=y |
13 | CONFIG_LOG_BUF_SHIFT=14 | 13 | CONFIG_LOG_BUF_SHIFT=14 |
14 | CONFIG_BLK_DEV_INITRD=y | 14 | CONFIG_BLK_DEV_INITRD=y |
15 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
16 | CONFIG_EXPERT=y | 15 | CONFIG_EXPERT=y |
17 | CONFIG_KALLSYMS_ALL=y | 16 | CONFIG_KALLSYMS_ALL=y |
18 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
19 | CONFIG_MODULES=y | 17 | CONFIG_MODULES=y |
20 | CONFIG_MODULE_UNLOAD=y | 18 | CONFIG_MODULE_UNLOAD=y |
21 | CONFIG_MODULE_FORCE_UNLOAD=y | 19 | CONFIG_MODULE_FORCE_UNLOAD=y |
@@ -42,7 +40,6 @@ CONFIG_TQM8560=y | |||
42 | CONFIG_SBC8548=y | 40 | CONFIG_SBC8548=y |
43 | CONFIG_QUICC_ENGINE=y | 41 | CONFIG_QUICC_ENGINE=y |
44 | CONFIG_QE_GPIO=y | 42 | CONFIG_QE_GPIO=y |
45 | CONFIG_MPC8xxx_GPIO=y | ||
46 | CONFIG_HIGHMEM=y | 43 | CONFIG_HIGHMEM=y |
47 | CONFIG_NO_HZ=y | 44 | CONFIG_NO_HZ=y |
48 | CONFIG_HIGH_RES_TIMERS=y | 45 | CONFIG_HIGH_RES_TIMERS=y |
@@ -124,6 +121,7 @@ CONFIG_NVRAM=y | |||
124 | CONFIG_I2C=y | 121 | CONFIG_I2C=y |
125 | CONFIG_I2C_CPM=m | 122 | CONFIG_I2C_CPM=m |
126 | CONFIG_I2C_MPC=y | 123 | CONFIG_I2C_MPC=y |
124 | CONFIG_GPIO_MPC8XXX=y | ||
127 | # CONFIG_HWMON is not set | 125 | # CONFIG_HWMON is not set |
128 | CONFIG_VIDEO_OUTPUT_CONTROL=y | 126 | CONFIG_VIDEO_OUTPUT_CONTROL=y |
129 | CONFIG_FB=y | 127 | CONFIG_FB=y |
@@ -207,10 +205,8 @@ CONFIG_PARTITION_ADVANCED=y | |||
207 | CONFIG_MAC_PARTITION=y | 205 | CONFIG_MAC_PARTITION=y |
208 | CONFIG_CRC_T10DIF=y | 206 | CONFIG_CRC_T10DIF=y |
209 | CONFIG_DEBUG_FS=y | 207 | CONFIG_DEBUG_FS=y |
210 | CONFIG_DEBUG_KERNEL=y | ||
211 | CONFIG_DETECT_HUNG_TASK=y | 208 | CONFIG_DETECT_HUNG_TASK=y |
212 | CONFIG_DEBUG_INFO=y | 209 | CONFIG_DEBUG_INFO=y |
213 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
214 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 210 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
215 | CONFIG_VIRQ_DEBUG=y | 211 | CONFIG_VIRQ_DEBUG=y |
216 | CONFIG_CRYPTO_PCBC=m | 212 | CONFIG_CRYPTO_PCBC=m |
diff --git a/arch/powerpc/configs/ppc40x_defconfig b/arch/powerpc/configs/ppc40x_defconfig index bfd634b5ada7..1eb19ac45d09 100644 --- a/arch/powerpc/configs/ppc40x_defconfig +++ b/arch/powerpc/configs/ppc40x_defconfig | |||
@@ -14,7 +14,6 @@ CONFIG_MODULE_UNLOAD=y | |||
14 | CONFIG_PPC4xx_GPIO=y | 14 | CONFIG_PPC4xx_GPIO=y |
15 | CONFIG_ACADIA=y | 15 | CONFIG_ACADIA=y |
16 | CONFIG_EP405=y | 16 | CONFIG_EP405=y |
17 | CONFIG_HCU4=y | ||
18 | CONFIG_HOTFOOT=y | 17 | CONFIG_HOTFOOT=y |
19 | CONFIG_KILAUEA=y | 18 | CONFIG_KILAUEA=y |
20 | CONFIG_MAKALU=y | 19 | CONFIG_MAKALU=y |
@@ -50,8 +49,9 @@ CONFIG_BLK_DEV_RAM=y | |||
50 | CONFIG_BLK_DEV_RAM_SIZE=35000 | 49 | CONFIG_BLK_DEV_RAM_SIZE=35000 |
51 | CONFIG_XILINX_SYSACE=m | 50 | CONFIG_XILINX_SYSACE=m |
52 | CONFIG_NETDEVICES=y | 51 | CONFIG_NETDEVICES=y |
53 | CONFIG_NET_ETHERNET=y | 52 | CONFIG_ETHERNET=y |
54 | CONFIG_IBM_NEW_EMAC=y | 53 | CONFIG_NET_VENDOR_IBM=y |
54 | CONFIG_IBM_EMAC=y | ||
55 | # CONFIG_INPUT is not set | 55 | # CONFIG_INPUT is not set |
56 | CONFIG_SERIO=m | 56 | CONFIG_SERIO=m |
57 | # CONFIG_SERIO_I8042 is not set | 57 | # CONFIG_SERIO_I8042 is not set |
diff --git a/arch/powerpc/configs/ppc44x_defconfig b/arch/powerpc/configs/ppc44x_defconfig index 47133202a625..6cdf1c0d2c8a 100644 --- a/arch/powerpc/configs/ppc44x_defconfig +++ b/arch/powerpc/configs/ppc44x_defconfig | |||
@@ -63,8 +63,9 @@ CONFIG_BLK_DEV_SD=m | |||
63 | # CONFIG_SCSI_LOWLEVEL is not set | 63 | # CONFIG_SCSI_LOWLEVEL is not set |
64 | CONFIG_NETDEVICES=y | 64 | CONFIG_NETDEVICES=y |
65 | CONFIG_TUN=m | 65 | CONFIG_TUN=m |
66 | CONFIG_NET_ETHERNET=y | 66 | CONFIG_ETHERNET=y |
67 | CONFIG_IBM_NEW_EMAC=y | 67 | CONFIG_NET_VENDOR_IBM=y |
68 | CONFIG_IBM_EMAC=y | ||
68 | # CONFIG_INPUT is not set | 69 | # CONFIG_INPUT is not set |
69 | CONFIG_SERIO=m | 70 | CONFIG_SERIO=m |
70 | # CONFIG_SERIO_I8042 is not set | 71 | # CONFIG_SERIO_I8042 is not set |
diff --git a/arch/powerpc/configs/ppc64_defconfig b/arch/powerpc/configs/ppc64_defconfig index 84a685a505fe..535711fcb13c 100644 --- a/arch/powerpc/configs/ppc64_defconfig +++ b/arch/powerpc/configs/ppc64_defconfig | |||
@@ -485,3 +485,7 @@ CONFIG_CRYPTO_TWOFISH=m | |||
485 | CONFIG_CRYPTO_LZO=m | 485 | CONFIG_CRYPTO_LZO=m |
486 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 486 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
487 | # CONFIG_CRYPTO_HW is not set | 487 | # CONFIG_CRYPTO_HW is not set |
488 | CONFIG_VIRTUALIZATION=y | ||
489 | CONFIG_KVM_BOOK3S_64=m | ||
490 | CONFIG_KVM_BOOK3S_64_HV=y | ||
491 | CONFIG_VHOST_NET=m | ||
diff --git a/arch/powerpc/configs/ppc6xx_defconfig b/arch/powerpc/configs/ppc6xx_defconfig index 04360f9b0109..c47f2becfbc3 100644 --- a/arch/powerpc/configs/ppc6xx_defconfig +++ b/arch/powerpc/configs/ppc6xx_defconfig | |||
@@ -70,7 +70,7 @@ CONFIG_TAU_AVERAGE=y | |||
70 | CONFIG_QUICC_ENGINE=y | 70 | CONFIG_QUICC_ENGINE=y |
71 | CONFIG_QE_GPIO=y | 71 | CONFIG_QE_GPIO=y |
72 | CONFIG_PPC_BESTCOMM=y | 72 | CONFIG_PPC_BESTCOMM=y |
73 | CONFIG_MPC8xxx_GPIO=y | 73 | CONFIG_GPIO_MPC8XXX=y |
74 | CONFIG_MCU_MPC8349EMITX=m | 74 | CONFIG_MCU_MPC8349EMITX=m |
75 | CONFIG_HIGHMEM=y | 75 | CONFIG_HIGHMEM=y |
76 | CONFIG_NO_HZ=y | 76 | CONFIG_NO_HZ=y |
diff --git a/arch/powerpc/configs/pseries_defconfig b/arch/powerpc/configs/pseries_defconfig index 96a58b709705..a72f2415a647 100644 --- a/arch/powerpc/configs/pseries_defconfig +++ b/arch/powerpc/configs/pseries_defconfig | |||
@@ -362,3 +362,7 @@ CONFIG_CRYPTO_TWOFISH=m | |||
362 | CONFIG_CRYPTO_LZO=m | 362 | CONFIG_CRYPTO_LZO=m |
363 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 363 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
364 | # CONFIG_CRYPTO_HW is not set | 364 | # CONFIG_CRYPTO_HW is not set |
365 | CONFIG_VIRTUALIZATION=y | ||
366 | CONFIG_KVM_BOOK3S_64=m | ||
367 | CONFIG_KVM_BOOK3S_64_HV=y | ||
368 | CONFIG_VHOST_NET=m | ||
diff --git a/arch/powerpc/include/asm/compat.h b/arch/powerpc/include/asm/compat.h index 91010e8f8479..88e602f6430d 100644 --- a/arch/powerpc/include/asm/compat.h +++ b/arch/powerpc/include/asm/compat.h | |||
@@ -100,7 +100,8 @@ struct compat_statfs { | |||
100 | compat_fsid_t f_fsid; | 100 | compat_fsid_t f_fsid; |
101 | int f_namelen; /* SunOS ignores this field. */ | 101 | int f_namelen; /* SunOS ignores this field. */ |
102 | int f_frsize; | 102 | int f_frsize; |
103 | int f_spare[5]; | 103 | int f_flags; |
104 | int f_spare[4]; | ||
104 | }; | 105 | }; |
105 | 106 | ||
106 | #define COMPAT_RLIM_OLD_INFINITY 0x7fffffff | 107 | #define COMPAT_RLIM_OLD_INFINITY 0x7fffffff |
diff --git a/arch/powerpc/include/asm/device.h b/arch/powerpc/include/asm/device.h index 16d25c0974be..d57c08acedfc 100644 --- a/arch/powerpc/include/asm/device.h +++ b/arch/powerpc/include/asm/device.h | |||
@@ -37,4 +37,6 @@ struct pdev_archdata { | |||
37 | u64 dma_mask; | 37 | u64 dma_mask; |
38 | }; | 38 | }; |
39 | 39 | ||
40 | #define ARCH_HAS_DMA_GET_REQUIRED_MASK | ||
41 | |||
40 | #endif /* _ASM_POWERPC_DEVICE_H */ | 42 | #endif /* _ASM_POWERPC_DEVICE_H */ |
diff --git a/arch/powerpc/include/asm/firmware.h b/arch/powerpc/include/asm/firmware.h index 3a6c586c4e40..14db29b18d0e 100644 --- a/arch/powerpc/include/asm/firmware.h +++ b/arch/powerpc/include/asm/firmware.h | |||
@@ -48,6 +48,8 @@ | |||
48 | #define FW_FEATURE_CMO ASM_CONST(0x0000000002000000) | 48 | #define FW_FEATURE_CMO ASM_CONST(0x0000000002000000) |
49 | #define FW_FEATURE_VPHN ASM_CONST(0x0000000004000000) | 49 | #define FW_FEATURE_VPHN ASM_CONST(0x0000000004000000) |
50 | #define FW_FEATURE_XCMO ASM_CONST(0x0000000008000000) | 50 | #define FW_FEATURE_XCMO ASM_CONST(0x0000000008000000) |
51 | #define FW_FEATURE_OPAL ASM_CONST(0x0000000010000000) | ||
52 | #define FW_FEATURE_OPALv2 ASM_CONST(0x0000000020000000) | ||
51 | 53 | ||
52 | #ifndef __ASSEMBLY__ | 54 | #ifndef __ASSEMBLY__ |
53 | 55 | ||
@@ -65,6 +67,8 @@ enum { | |||
65 | FW_FEATURE_PSERIES_ALWAYS = 0, | 67 | FW_FEATURE_PSERIES_ALWAYS = 0, |
66 | FW_FEATURE_ISERIES_POSSIBLE = FW_FEATURE_ISERIES | FW_FEATURE_LPAR, | 68 | FW_FEATURE_ISERIES_POSSIBLE = FW_FEATURE_ISERIES | FW_FEATURE_LPAR, |
67 | FW_FEATURE_ISERIES_ALWAYS = FW_FEATURE_ISERIES | FW_FEATURE_LPAR, | 69 | FW_FEATURE_ISERIES_ALWAYS = FW_FEATURE_ISERIES | FW_FEATURE_LPAR, |
70 | FW_FEATURE_POWERNV_POSSIBLE = FW_FEATURE_OPAL | FW_FEATURE_OPALv2, | ||
71 | FW_FEATURE_POWERNV_ALWAYS = 0, | ||
68 | FW_FEATURE_PS3_POSSIBLE = FW_FEATURE_LPAR | FW_FEATURE_PS3_LV1, | 72 | FW_FEATURE_PS3_POSSIBLE = FW_FEATURE_LPAR | FW_FEATURE_PS3_LV1, |
69 | FW_FEATURE_PS3_ALWAYS = FW_FEATURE_LPAR | FW_FEATURE_PS3_LV1, | 73 | FW_FEATURE_PS3_ALWAYS = FW_FEATURE_LPAR | FW_FEATURE_PS3_LV1, |
70 | FW_FEATURE_CELLEB_POSSIBLE = FW_FEATURE_LPAR | FW_FEATURE_BEAT, | 74 | FW_FEATURE_CELLEB_POSSIBLE = FW_FEATURE_LPAR | FW_FEATURE_BEAT, |
@@ -78,6 +82,9 @@ enum { | |||
78 | #ifdef CONFIG_PPC_ISERIES | 82 | #ifdef CONFIG_PPC_ISERIES |
79 | FW_FEATURE_ISERIES_POSSIBLE | | 83 | FW_FEATURE_ISERIES_POSSIBLE | |
80 | #endif | 84 | #endif |
85 | #ifdef CONFIG_PPC_POWERNV | ||
86 | FW_FEATURE_POWERNV_POSSIBLE | | ||
87 | #endif | ||
81 | #ifdef CONFIG_PPC_PS3 | 88 | #ifdef CONFIG_PPC_PS3 |
82 | FW_FEATURE_PS3_POSSIBLE | | 89 | FW_FEATURE_PS3_POSSIBLE | |
83 | #endif | 90 | #endif |
@@ -95,6 +102,9 @@ enum { | |||
95 | #ifdef CONFIG_PPC_ISERIES | 102 | #ifdef CONFIG_PPC_ISERIES |
96 | FW_FEATURE_ISERIES_ALWAYS & | 103 | FW_FEATURE_ISERIES_ALWAYS & |
97 | #endif | 104 | #endif |
105 | #ifdef CONFIG_PPC_POWERNV | ||
106 | FW_FEATURE_POWERNV_ALWAYS & | ||
107 | #endif | ||
98 | #ifdef CONFIG_PPC_PS3 | 108 | #ifdef CONFIG_PPC_PS3 |
99 | FW_FEATURE_PS3_ALWAYS & | 109 | FW_FEATURE_PS3_ALWAYS & |
100 | #endif | 110 | #endif |
diff --git a/arch/powerpc/include/asm/floppy.h b/arch/powerpc/include/asm/floppy.h index 24bd34c57e9d..936a904ae78c 100644 --- a/arch/powerpc/include/asm/floppy.h +++ b/arch/powerpc/include/asm/floppy.h | |||
@@ -108,10 +108,10 @@ static int fd_request_irq(void) | |||
108 | { | 108 | { |
109 | if (can_use_virtual_dma) | 109 | if (can_use_virtual_dma) |
110 | return request_irq(FLOPPY_IRQ, floppy_hardint, | 110 | return request_irq(FLOPPY_IRQ, floppy_hardint, |
111 | IRQF_DISABLED, "floppy", NULL); | 111 | 0, "floppy", NULL); |
112 | else | 112 | else |
113 | return request_irq(FLOPPY_IRQ, floppy_interrupt, | 113 | return request_irq(FLOPPY_IRQ, floppy_interrupt, |
114 | IRQF_DISABLED, "floppy", NULL); | 114 | 0, "floppy", NULL); |
115 | } | 115 | } |
116 | 116 | ||
117 | static int vdma_dma_setup(char *addr, unsigned long size, int mode, int io) | 117 | static int vdma_dma_setup(char *addr, unsigned long size, int mode, int io) |
diff --git a/arch/powerpc/include/asm/hugetlb.h b/arch/powerpc/include/asm/hugetlb.h index 5856a66ab404..86004930a78e 100644 --- a/arch/powerpc/include/asm/hugetlb.h +++ b/arch/powerpc/include/asm/hugetlb.h | |||
@@ -1,15 +1,60 @@ | |||
1 | #ifndef _ASM_POWERPC_HUGETLB_H | 1 | #ifndef _ASM_POWERPC_HUGETLB_H |
2 | #define _ASM_POWERPC_HUGETLB_H | 2 | #define _ASM_POWERPC_HUGETLB_H |
3 | 3 | ||
4 | #ifdef CONFIG_HUGETLB_PAGE | ||
4 | #include <asm/page.h> | 5 | #include <asm/page.h> |
5 | 6 | ||
7 | extern struct kmem_cache *hugepte_cache; | ||
8 | extern void __init reserve_hugetlb_gpages(void); | ||
9 | |||
10 | static inline pte_t *hugepd_page(hugepd_t hpd) | ||
11 | { | ||
12 | BUG_ON(!hugepd_ok(hpd)); | ||
13 | return (pte_t *)((hpd.pd & ~HUGEPD_SHIFT_MASK) | PD_HUGE); | ||
14 | } | ||
15 | |||
16 | static inline unsigned int hugepd_shift(hugepd_t hpd) | ||
17 | { | ||
18 | return hpd.pd & HUGEPD_SHIFT_MASK; | ||
19 | } | ||
20 | |||
21 | static inline pte_t *hugepte_offset(hugepd_t *hpdp, unsigned long addr, | ||
22 | unsigned pdshift) | ||
23 | { | ||
24 | /* | ||
25 | * On 32-bit, we have multiple higher-level table entries that point to | ||
26 | * the same hugepte. Just use the first one since they're all | ||
27 | * identical. So for that case, idx=0. | ||
28 | */ | ||
29 | unsigned long idx = 0; | ||
30 | |||
31 | pte_t *dir = hugepd_page(*hpdp); | ||
32 | #ifdef CONFIG_PPC64 | ||
33 | idx = (addr & ((1UL << pdshift) - 1)) >> hugepd_shift(*hpdp); | ||
34 | #endif | ||
35 | |||
36 | return dir + idx; | ||
37 | } | ||
38 | |||
6 | pte_t *huge_pte_offset_and_shift(struct mm_struct *mm, | 39 | pte_t *huge_pte_offset_and_shift(struct mm_struct *mm, |
7 | unsigned long addr, unsigned *shift); | 40 | unsigned long addr, unsigned *shift); |
8 | 41 | ||
9 | void flush_dcache_icache_hugepage(struct page *page); | 42 | void flush_dcache_icache_hugepage(struct page *page); |
10 | 43 | ||
44 | #if defined(CONFIG_PPC_MM_SLICES) || defined(CONFIG_PPC_SUBPAGE_PROT) | ||
11 | int is_hugepage_only_range(struct mm_struct *mm, unsigned long addr, | 45 | int is_hugepage_only_range(struct mm_struct *mm, unsigned long addr, |
12 | unsigned long len); | 46 | unsigned long len); |
47 | #else | ||
48 | static inline int is_hugepage_only_range(struct mm_struct *mm, | ||
49 | unsigned long addr, | ||
50 | unsigned long len) | ||
51 | { | ||
52 | return 0; | ||
53 | } | ||
54 | #endif | ||
55 | |||
56 | void book3e_hugetlb_preload(struct mm_struct *mm, unsigned long ea, pte_t pte); | ||
57 | void flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr); | ||
13 | 58 | ||
14 | void hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, | 59 | void hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, |
15 | unsigned long end, unsigned long floor, | 60 | unsigned long end, unsigned long floor, |
@@ -50,8 +95,11 @@ static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr, | |||
50 | static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm, | 95 | static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm, |
51 | unsigned long addr, pte_t *ptep) | 96 | unsigned long addr, pte_t *ptep) |
52 | { | 97 | { |
53 | unsigned long old = pte_update(mm, addr, ptep, ~0UL, 1); | 98 | #ifdef CONFIG_PPC64 |
54 | return __pte(old); | 99 | return __pte(pte_update(mm, addr, ptep, ~0UL, 1)); |
100 | #else | ||
101 | return __pte(pte_update(ptep, ~0UL, 0)); | ||
102 | #endif | ||
55 | } | 103 | } |
56 | 104 | ||
57 | static inline void huge_ptep_clear_flush(struct vm_area_struct *vma, | 105 | static inline void huge_ptep_clear_flush(struct vm_area_struct *vma, |
@@ -93,4 +141,15 @@ static inline void arch_release_hugepage(struct page *page) | |||
93 | { | 141 | { |
94 | } | 142 | } |
95 | 143 | ||
144 | #else /* ! CONFIG_HUGETLB_PAGE */ | ||
145 | static inline void reserve_hugetlb_gpages(void) | ||
146 | { | ||
147 | pr_err("Cannot reserve gpages without hugetlb enabled\n"); | ||
148 | } | ||
149 | static inline void flush_hugetlb_page(struct vm_area_struct *vma, | ||
150 | unsigned long vmaddr) | ||
151 | { | ||
152 | } | ||
153 | #endif | ||
154 | |||
96 | #endif /* _ASM_POWERPC_HUGETLB_H */ | 155 | #endif /* _ASM_POWERPC_HUGETLB_H */ |
diff --git a/arch/powerpc/include/asm/kexec.h b/arch/powerpc/include/asm/kexec.h index 8a33698c61bd..f921eb121d39 100644 --- a/arch/powerpc/include/asm/kexec.h +++ b/arch/powerpc/include/asm/kexec.h | |||
@@ -2,7 +2,7 @@ | |||
2 | #define _ASM_POWERPC_KEXEC_H | 2 | #define _ASM_POWERPC_KEXEC_H |
3 | #ifdef __KERNEL__ | 3 | #ifdef __KERNEL__ |
4 | 4 | ||
5 | #ifdef CONFIG_FSL_BOOKE | 5 | #if defined(CONFIG_FSL_BOOKE) || defined(CONFIG_44x) |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * On FSL-BookE we setup a 1:1 mapping which covers the first 2GiB of memory | 8 | * On FSL-BookE we setup a 1:1 mapping which covers the first 2GiB of memory |
diff --git a/arch/powerpc/include/asm/kvm.h b/arch/powerpc/include/asm/kvm.h index a4f6c85431f8..08fe69edcd10 100644 --- a/arch/powerpc/include/asm/kvm.h +++ b/arch/powerpc/include/asm/kvm.h | |||
@@ -149,6 +149,12 @@ struct kvm_regs { | |||
149 | #define KVM_SREGS_E_UPDATE_DBSR (1 << 3) | 149 | #define KVM_SREGS_E_UPDATE_DBSR (1 << 3) |
150 | 150 | ||
151 | /* | 151 | /* |
152 | * Book3S special bits to indicate contents in the struct by maintaining | ||
153 | * backwards compatibility with older structs. If adding a new field, | ||
154 | * please make sure to add a flag for that new field */ | ||
155 | #define KVM_SREGS_S_HIOR (1 << 0) | ||
156 | |||
157 | /* | ||
152 | * In KVM_SET_SREGS, reserved/pad fields must be left untouched from a | 158 | * In KVM_SET_SREGS, reserved/pad fields must be left untouched from a |
153 | * previous KVM_GET_REGS. | 159 | * previous KVM_GET_REGS. |
154 | * | 160 | * |
@@ -173,6 +179,8 @@ struct kvm_sregs { | |||
173 | __u64 ibat[8]; | 179 | __u64 ibat[8]; |
174 | __u64 dbat[8]; | 180 | __u64 dbat[8]; |
175 | } ppc32; | 181 | } ppc32; |
182 | __u64 flags; /* KVM_SREGS_S_ */ | ||
183 | __u64 hior; | ||
176 | } s; | 184 | } s; |
177 | struct { | 185 | struct { |
178 | union { | 186 | union { |
@@ -276,6 +284,11 @@ struct kvm_guest_debug_arch { | |||
276 | #define KVM_INTERRUPT_UNSET -2U | 284 | #define KVM_INTERRUPT_UNSET -2U |
277 | #define KVM_INTERRUPT_SET_LEVEL -3U | 285 | #define KVM_INTERRUPT_SET_LEVEL -3U |
278 | 286 | ||
287 | #define KVM_CPU_440 1 | ||
288 | #define KVM_CPU_E500V2 2 | ||
289 | #define KVM_CPU_3S_32 3 | ||
290 | #define KVM_CPU_3S_64 4 | ||
291 | |||
279 | /* for KVM_CAP_SPAPR_TCE */ | 292 | /* for KVM_CAP_SPAPR_TCE */ |
280 | struct kvm_create_spapr_tce { | 293 | struct kvm_create_spapr_tce { |
281 | __u64 liobn; | 294 | __u64 liobn; |
diff --git a/arch/powerpc/include/asm/kvm_book3s.h b/arch/powerpc/include/asm/kvm_book3s.h index 98da010252a3..a384ffdf33de 100644 --- a/arch/powerpc/include/asm/kvm_book3s.h +++ b/arch/powerpc/include/asm/kvm_book3s.h | |||
@@ -90,6 +90,8 @@ struct kvmppc_vcpu_book3s { | |||
90 | #endif | 90 | #endif |
91 | int context_id[SID_CONTEXTS]; | 91 | int context_id[SID_CONTEXTS]; |
92 | 92 | ||
93 | bool hior_sregs; /* HIOR is set by SREGS, not PVR */ | ||
94 | |||
93 | struct hlist_head hpte_hash_pte[HPTEG_HASH_NUM_PTE]; | 95 | struct hlist_head hpte_hash_pte[HPTEG_HASH_NUM_PTE]; |
94 | struct hlist_head hpte_hash_pte_long[HPTEG_HASH_NUM_PTE_LONG]; | 96 | struct hlist_head hpte_hash_pte_long[HPTEG_HASH_NUM_PTE_LONG]; |
95 | struct hlist_head hpte_hash_vpte[HPTEG_HASH_NUM_VPTE]; | 97 | struct hlist_head hpte_hash_vpte[HPTEG_HASH_NUM_VPTE]; |
@@ -139,15 +141,14 @@ extern void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr); | |||
139 | extern int kvmppc_emulate_paired_single(struct kvm_run *run, struct kvm_vcpu *vcpu); | 141 | extern int kvmppc_emulate_paired_single(struct kvm_run *run, struct kvm_vcpu *vcpu); |
140 | extern pfn_t kvmppc_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn); | 142 | extern pfn_t kvmppc_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn); |
141 | 143 | ||
142 | extern void kvmppc_handler_lowmem_trampoline(void); | 144 | extern void kvmppc_entry_trampoline(void); |
143 | extern void kvmppc_handler_trampoline_enter(void); | ||
144 | extern void kvmppc_rmcall(ulong srr0, ulong srr1); | ||
145 | extern void kvmppc_hv_entry_trampoline(void); | 145 | extern void kvmppc_hv_entry_trampoline(void); |
146 | extern void kvmppc_load_up_fpu(void); | 146 | extern void kvmppc_load_up_fpu(void); |
147 | extern void kvmppc_load_up_altivec(void); | 147 | extern void kvmppc_load_up_altivec(void); |
148 | extern void kvmppc_load_up_vsx(void); | 148 | extern void kvmppc_load_up_vsx(void); |
149 | extern u32 kvmppc_alignment_dsisr(struct kvm_vcpu *vcpu, unsigned int inst); | 149 | extern u32 kvmppc_alignment_dsisr(struct kvm_vcpu *vcpu, unsigned int inst); |
150 | extern ulong kvmppc_alignment_dar(struct kvm_vcpu *vcpu, unsigned int inst); | 150 | extern ulong kvmppc_alignment_dar(struct kvm_vcpu *vcpu, unsigned int inst); |
151 | extern int kvmppc_h_pr(struct kvm_vcpu *vcpu, unsigned long cmd); | ||
151 | 152 | ||
152 | static inline struct kvmppc_vcpu_book3s *to_book3s(struct kvm_vcpu *vcpu) | 153 | static inline struct kvmppc_vcpu_book3s *to_book3s(struct kvm_vcpu *vcpu) |
153 | { | 154 | { |
@@ -382,6 +383,39 @@ static inline bool kvmppc_critical_section(struct kvm_vcpu *vcpu) | |||
382 | } | 383 | } |
383 | #endif | 384 | #endif |
384 | 385 | ||
386 | static inline unsigned long compute_tlbie_rb(unsigned long v, unsigned long r, | ||
387 | unsigned long pte_index) | ||
388 | { | ||
389 | unsigned long rb, va_low; | ||
390 | |||
391 | rb = (v & ~0x7fUL) << 16; /* AVA field */ | ||
392 | va_low = pte_index >> 3; | ||
393 | if (v & HPTE_V_SECONDARY) | ||
394 | va_low = ~va_low; | ||
395 | /* xor vsid from AVA */ | ||
396 | if (!(v & HPTE_V_1TB_SEG)) | ||
397 | va_low ^= v >> 12; | ||
398 | else | ||
399 | va_low ^= v >> 24; | ||
400 | va_low &= 0x7ff; | ||
401 | if (v & HPTE_V_LARGE) { | ||
402 | rb |= 1; /* L field */ | ||
403 | if (cpu_has_feature(CPU_FTR_ARCH_206) && | ||
404 | (r & 0xff000)) { | ||
405 | /* non-16MB large page, must be 64k */ | ||
406 | /* (masks depend on page size) */ | ||
407 | rb |= 0x1000; /* page encoding in LP field */ | ||
408 | rb |= (va_low & 0x7f) << 16; /* 7b of VA in AVA/LP field */ | ||
409 | rb |= (va_low & 0xfe); /* AVAL field (P7 doesn't seem to care) */ | ||
410 | } | ||
411 | } else { | ||
412 | /* 4kB page */ | ||
413 | rb |= (va_low & 0x7ff) << 12; /* remaining 11b of VA */ | ||
414 | } | ||
415 | rb |= (v >> 54) & 0x300; /* B field */ | ||
416 | return rb; | ||
417 | } | ||
418 | |||
385 | /* Magic register values loaded into r3 and r4 before the 'sc' assembly | 419 | /* Magic register values loaded into r3 and r4 before the 'sc' assembly |
386 | * instruction for the OSI hypercalls */ | 420 | * instruction for the OSI hypercalls */ |
387 | #define OSI_SC_MAGIC_R3 0x113724FA | 421 | #define OSI_SC_MAGIC_R3 0x113724FA |
diff --git a/arch/powerpc/include/asm/kvm_book3s_asm.h b/arch/powerpc/include/asm/kvm_book3s_asm.h index ef7b3688c3b6..1f2f5b6156bd 100644 --- a/arch/powerpc/include/asm/kvm_book3s_asm.h +++ b/arch/powerpc/include/asm/kvm_book3s_asm.h | |||
@@ -75,6 +75,8 @@ struct kvmppc_host_state { | |||
75 | ulong scratch0; | 75 | ulong scratch0; |
76 | ulong scratch1; | 76 | ulong scratch1; |
77 | u8 in_guest; | 77 | u8 in_guest; |
78 | u8 restore_hid5; | ||
79 | u8 napping; | ||
78 | 80 | ||
79 | #ifdef CONFIG_KVM_BOOK3S_64_HV | 81 | #ifdef CONFIG_KVM_BOOK3S_64_HV |
80 | struct kvm_vcpu *kvm_vcpu; | 82 | struct kvm_vcpu *kvm_vcpu; |
diff --git a/arch/powerpc/include/asm/kvm_host.h b/arch/powerpc/include/asm/kvm_host.h index cc22b282d755..bf8af5d5d5dc 100644 --- a/arch/powerpc/include/asm/kvm_host.h +++ b/arch/powerpc/include/asm/kvm_host.h | |||
@@ -198,21 +198,29 @@ struct kvm_arch { | |||
198 | */ | 198 | */ |
199 | struct kvmppc_vcore { | 199 | struct kvmppc_vcore { |
200 | int n_runnable; | 200 | int n_runnable; |
201 | int n_blocked; | 201 | int n_busy; |
202 | int num_threads; | 202 | int num_threads; |
203 | int entry_exit_count; | 203 | int entry_exit_count; |
204 | int n_woken; | 204 | int n_woken; |
205 | int nap_count; | 205 | int nap_count; |
206 | int napping_threads; | ||
206 | u16 pcpu; | 207 | u16 pcpu; |
207 | u8 vcore_running; | 208 | u8 vcore_state; |
208 | u8 in_guest; | 209 | u8 in_guest; |
209 | struct list_head runnable_threads; | 210 | struct list_head runnable_threads; |
210 | spinlock_t lock; | 211 | spinlock_t lock; |
212 | wait_queue_head_t wq; | ||
211 | }; | 213 | }; |
212 | 214 | ||
213 | #define VCORE_ENTRY_COUNT(vc) ((vc)->entry_exit_count & 0xff) | 215 | #define VCORE_ENTRY_COUNT(vc) ((vc)->entry_exit_count & 0xff) |
214 | #define VCORE_EXIT_COUNT(vc) ((vc)->entry_exit_count >> 8) | 216 | #define VCORE_EXIT_COUNT(vc) ((vc)->entry_exit_count >> 8) |
215 | 217 | ||
218 | /* Values for vcore_state */ | ||
219 | #define VCORE_INACTIVE 0 | ||
220 | #define VCORE_RUNNING 1 | ||
221 | #define VCORE_EXITING 2 | ||
222 | #define VCORE_SLEEPING 3 | ||
223 | |||
216 | struct kvmppc_pte { | 224 | struct kvmppc_pte { |
217 | ulong eaddr; | 225 | ulong eaddr; |
218 | u64 vpage; | 226 | u64 vpage; |
@@ -258,14 +266,6 @@ struct kvm_vcpu_arch { | |||
258 | ulong host_stack; | 266 | ulong host_stack; |
259 | u32 host_pid; | 267 | u32 host_pid; |
260 | #ifdef CONFIG_PPC_BOOK3S | 268 | #ifdef CONFIG_PPC_BOOK3S |
261 | ulong host_msr; | ||
262 | ulong host_r2; | ||
263 | void *host_retip; | ||
264 | ulong trampoline_lowmem; | ||
265 | ulong trampoline_enter; | ||
266 | ulong highmem_handler; | ||
267 | ulong rmcall; | ||
268 | ulong host_paca_phys; | ||
269 | struct kvmppc_slb slb[64]; | 269 | struct kvmppc_slb slb[64]; |
270 | int slb_max; /* 1 + index of last valid entry in slb[] */ | 270 | int slb_max; /* 1 + index of last valid entry in slb[] */ |
271 | int slb_nr; /* total number of entries in SLB */ | 271 | int slb_nr; /* total number of entries in SLB */ |
@@ -389,6 +389,9 @@ struct kvm_vcpu_arch { | |||
389 | u8 dcr_is_write; | 389 | u8 dcr_is_write; |
390 | u8 osi_needed; | 390 | u8 osi_needed; |
391 | u8 osi_enabled; | 391 | u8 osi_enabled; |
392 | u8 papr_enabled; | ||
393 | u8 sane; | ||
394 | u8 cpu_type; | ||
392 | u8 hcall_needed; | 395 | u8 hcall_needed; |
393 | 396 | ||
394 | u32 cpr0_cfgaddr; /* holds the last set cpr0_cfgaddr */ | 397 | u32 cpr0_cfgaddr; /* holds the last set cpr0_cfgaddr */ |
@@ -408,11 +411,13 @@ struct kvm_vcpu_arch { | |||
408 | struct dtl *dtl; | 411 | struct dtl *dtl; |
409 | struct dtl *dtl_end; | 412 | struct dtl *dtl_end; |
410 | 413 | ||
414 | wait_queue_head_t *wqp; | ||
411 | struct kvmppc_vcore *vcore; | 415 | struct kvmppc_vcore *vcore; |
412 | int ret; | 416 | int ret; |
413 | int trap; | 417 | int trap; |
414 | int state; | 418 | int state; |
415 | int ptid; | 419 | int ptid; |
420 | bool timer_running; | ||
416 | wait_queue_head_t cpu_run; | 421 | wait_queue_head_t cpu_run; |
417 | 422 | ||
418 | struct kvm_vcpu_arch_shared *shared; | 423 | struct kvm_vcpu_arch_shared *shared; |
@@ -428,8 +433,9 @@ struct kvm_vcpu_arch { | |||
428 | #endif | 433 | #endif |
429 | }; | 434 | }; |
430 | 435 | ||
431 | #define KVMPPC_VCPU_BUSY_IN_HOST 0 | 436 | /* Values for vcpu->arch.state */ |
432 | #define KVMPPC_VCPU_BLOCKED 1 | 437 | #define KVMPPC_VCPU_STOPPED 0 |
438 | #define KVMPPC_VCPU_BUSY_IN_HOST 1 | ||
433 | #define KVMPPC_VCPU_RUNNABLE 2 | 439 | #define KVMPPC_VCPU_RUNNABLE 2 |
434 | 440 | ||
435 | #endif /* __POWERPC_KVM_HOST_H__ */ | 441 | #endif /* __POWERPC_KVM_HOST_H__ */ |
diff --git a/arch/powerpc/include/asm/kvm_ppc.h b/arch/powerpc/include/asm/kvm_ppc.h index d121f49d62b8..46efd1a265c9 100644 --- a/arch/powerpc/include/asm/kvm_ppc.h +++ b/arch/powerpc/include/asm/kvm_ppc.h | |||
@@ -66,6 +66,7 @@ extern int kvmppc_emulate_instruction(struct kvm_run *run, | |||
66 | extern int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu); | 66 | extern int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu); |
67 | extern void kvmppc_emulate_dec(struct kvm_vcpu *vcpu); | 67 | extern void kvmppc_emulate_dec(struct kvm_vcpu *vcpu); |
68 | extern u32 kvmppc_get_dec(struct kvm_vcpu *vcpu, u64 tb); | 68 | extern u32 kvmppc_get_dec(struct kvm_vcpu *vcpu, u64 tb); |
69 | extern int kvmppc_sanity_check(struct kvm_vcpu *vcpu); | ||
69 | 70 | ||
70 | /* Core-specific hooks */ | 71 | /* Core-specific hooks */ |
71 | 72 | ||
diff --git a/arch/powerpc/include/asm/lv1call.h b/arch/powerpc/include/asm/lv1call.h index 81713acf7529..f77c708c67a0 100644 --- a/arch/powerpc/include/asm/lv1call.h +++ b/arch/powerpc/include/asm/lv1call.h | |||
@@ -25,6 +25,7 @@ | |||
25 | #if !defined(__ASSEMBLY__) | 25 | #if !defined(__ASSEMBLY__) |
26 | 26 | ||
27 | #include <linux/types.h> | 27 | #include <linux/types.h> |
28 | #include <linux/export.h> | ||
28 | 29 | ||
29 | /* lv1 call declaration macros */ | 30 | /* lv1 call declaration macros */ |
30 | 31 | ||
@@ -315,7 +316,7 @@ LV1_CALL(gpu_context_free, 1, 0, 218 ) | |||
315 | LV1_CALL(gpu_context_iomap, 5, 0, 221 ) | 316 | LV1_CALL(gpu_context_iomap, 5, 0, 221 ) |
316 | LV1_CALL(gpu_context_attribute, 6, 0, 225 ) | 317 | LV1_CALL(gpu_context_attribute, 6, 0, 225 ) |
317 | LV1_CALL(gpu_context_intr, 1, 1, 227 ) | 318 | LV1_CALL(gpu_context_intr, 1, 1, 227 ) |
318 | LV1_CALL(gpu_attribute, 5, 0, 228 ) | 319 | LV1_CALL(gpu_attribute, 3, 0, 228 ) |
319 | LV1_CALL(get_rtc, 0, 2, 232 ) | 320 | LV1_CALL(get_rtc, 0, 2, 232 ) |
320 | LV1_CALL(set_ppe_periodic_tracer_frequency, 1, 0, 240 ) | 321 | LV1_CALL(set_ppe_periodic_tracer_frequency, 1, 0, 240 ) |
321 | LV1_CALL(start_ppe_periodic_tracer, 5, 0, 241 ) | 322 | LV1_CALL(start_ppe_periodic_tracer, 5, 0, 241 ) |
diff --git a/arch/powerpc/include/asm/machdep.h b/arch/powerpc/include/asm/machdep.h index 47cacddb14cf..b540d6fcedd6 100644 --- a/arch/powerpc/include/asm/machdep.h +++ b/arch/powerpc/include/asm/machdep.h | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/seq_file.h> | 12 | #include <linux/seq_file.h> |
13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/dma-mapping.h> | 14 | #include <linux/dma-mapping.h> |
15 | #include <linux/export.h> | ||
15 | 16 | ||
16 | #include <asm/setup.h> | 17 | #include <asm/setup.h> |
17 | 18 | ||
@@ -85,8 +86,9 @@ struct machdep_calls { | |||
85 | void (*pci_dma_dev_setup)(struct pci_dev *dev); | 86 | void (*pci_dma_dev_setup)(struct pci_dev *dev); |
86 | void (*pci_dma_bus_setup)(struct pci_bus *bus); | 87 | void (*pci_dma_bus_setup)(struct pci_bus *bus); |
87 | 88 | ||
88 | /* Platform set_dma_mask override */ | 89 | /* Platform set_dma_mask and dma_get_required_mask overrides */ |
89 | int (*dma_set_mask)(struct device *dev, u64 dma_mask); | 90 | int (*dma_set_mask)(struct device *dev, u64 dma_mask); |
91 | u64 (*dma_get_required_mask)(struct device *dev); | ||
90 | 92 | ||
91 | int (*probe)(void); | 93 | int (*probe)(void); |
92 | void (*setup_arch)(void); /* Optional, may be NULL */ | 94 | void (*setup_arch)(void); /* Optional, may be NULL */ |
diff --git a/arch/powerpc/include/asm/mmu-book3e.h b/arch/powerpc/include/asm/mmu-book3e.h index 3ea0f9a259d8..0260ea5ec3c2 100644 --- a/arch/powerpc/include/asm/mmu-book3e.h +++ b/arch/powerpc/include/asm/mmu-book3e.h | |||
@@ -66,6 +66,7 @@ | |||
66 | #define MAS2_M 0x00000004 | 66 | #define MAS2_M 0x00000004 |
67 | #define MAS2_G 0x00000002 | 67 | #define MAS2_G 0x00000002 |
68 | #define MAS2_E 0x00000001 | 68 | #define MAS2_E 0x00000001 |
69 | #define MAS2_WIMGE_MASK 0x0000001f | ||
69 | #define MAS2_EPN_MASK(size) (~0 << (size + 10)) | 70 | #define MAS2_EPN_MASK(size) (~0 << (size + 10)) |
70 | #define MAS2_VAL(addr, size, flags) ((addr) & MAS2_EPN_MASK(size) | (flags)) | 71 | #define MAS2_VAL(addr, size, flags) ((addr) & MAS2_EPN_MASK(size) | (flags)) |
71 | 72 | ||
@@ -80,6 +81,7 @@ | |||
80 | #define MAS3_SW 0x00000004 | 81 | #define MAS3_SW 0x00000004 |
81 | #define MAS3_UR 0x00000002 | 82 | #define MAS3_UR 0x00000002 |
82 | #define MAS3_SR 0x00000001 | 83 | #define MAS3_SR 0x00000001 |
84 | #define MAS3_BAP_MASK 0x0000003f | ||
83 | #define MAS3_SPSIZE 0x0000003e | 85 | #define MAS3_SPSIZE 0x0000003e |
84 | #define MAS3_SPSIZE_SHIFT 1 | 86 | #define MAS3_SPSIZE_SHIFT 1 |
85 | 87 | ||
@@ -212,6 +214,11 @@ typedef struct { | |||
212 | unsigned int id; | 214 | unsigned int id; |
213 | unsigned int active; | 215 | unsigned int active; |
214 | unsigned long vdso_base; | 216 | unsigned long vdso_base; |
217 | #ifdef CONFIG_PPC_MM_SLICES | ||
218 | u64 low_slices_psize; /* SLB page size encodings */ | ||
219 | u64 high_slices_psize; /* 4 bits per slice for now */ | ||
220 | u16 user_psize; /* page size index */ | ||
221 | #endif | ||
215 | } mm_context_t; | 222 | } mm_context_t; |
216 | 223 | ||
217 | /* Page size definitions, common between 32 and 64-bit | 224 | /* Page size definitions, common between 32 and 64-bit |
diff --git a/arch/powerpc/include/asm/mmu-hash64.h b/arch/powerpc/include/asm/mmu-hash64.h index b445e0af4c2b..db645ec842bd 100644 --- a/arch/powerpc/include/asm/mmu-hash64.h +++ b/arch/powerpc/include/asm/mmu-hash64.h | |||
@@ -262,8 +262,7 @@ extern void hash_failure_debug(unsigned long ea, unsigned long access, | |||
262 | extern int htab_bolt_mapping(unsigned long vstart, unsigned long vend, | 262 | extern int htab_bolt_mapping(unsigned long vstart, unsigned long vend, |
263 | unsigned long pstart, unsigned long prot, | 263 | unsigned long pstart, unsigned long prot, |
264 | int psize, int ssize); | 264 | int psize, int ssize); |
265 | extern void add_gpage(unsigned long addr, unsigned long page_size, | 265 | extern void add_gpage(u64 addr, u64 page_size, unsigned long number_of_pages); |
266 | unsigned long number_of_pages); | ||
267 | extern void demote_segment_4k(struct mm_struct *mm, unsigned long addr); | 266 | extern void demote_segment_4k(struct mm_struct *mm, unsigned long addr); |
268 | 267 | ||
269 | extern void hpte_init_native(void); | 268 | extern void hpte_init_native(void); |
diff --git a/arch/powerpc/include/asm/mmu.h b/arch/powerpc/include/asm/mmu.h index 698b30638681..f0145522cfba 100644 --- a/arch/powerpc/include/asm/mmu.h +++ b/arch/powerpc/include/asm/mmu.h | |||
@@ -175,14 +175,16 @@ extern u64 ppc64_rma_size; | |||
175 | #define MMU_PAGE_64K_AP 3 /* "Admixed pages" (hash64 only) */ | 175 | #define MMU_PAGE_64K_AP 3 /* "Admixed pages" (hash64 only) */ |
176 | #define MMU_PAGE_256K 4 | 176 | #define MMU_PAGE_256K 4 |
177 | #define MMU_PAGE_1M 5 | 177 | #define MMU_PAGE_1M 5 |
178 | #define MMU_PAGE_8M 6 | 178 | #define MMU_PAGE_4M 6 |
179 | #define MMU_PAGE_16M 7 | 179 | #define MMU_PAGE_8M 7 |
180 | #define MMU_PAGE_256M 8 | 180 | #define MMU_PAGE_16M 8 |
181 | #define MMU_PAGE_1G 9 | 181 | #define MMU_PAGE_64M 9 |
182 | #define MMU_PAGE_16G 10 | 182 | #define MMU_PAGE_256M 10 |
183 | #define MMU_PAGE_64G 11 | 183 | #define MMU_PAGE_1G 11 |
184 | #define MMU_PAGE_COUNT 12 | 184 | #define MMU_PAGE_16G 12 |
185 | 185 | #define MMU_PAGE_64G 13 | |
186 | |||
187 | #define MMU_PAGE_COUNT 14 | ||
186 | 188 | ||
187 | #if defined(CONFIG_PPC_STD_MMU_64) | 189 | #if defined(CONFIG_PPC_STD_MMU_64) |
188 | /* 64-bit classic hash table MMU */ | 190 | /* 64-bit classic hash table MMU */ |
diff --git a/arch/powerpc/include/asm/mpic.h b/arch/powerpc/include/asm/mpic.h index df18989e78d4..e6fae49e0b74 100644 --- a/arch/powerpc/include/asm/mpic.h +++ b/arch/powerpc/include/asm/mpic.h | |||
@@ -273,8 +273,6 @@ struct mpic | |||
273 | unsigned int irq_count; | 273 | unsigned int irq_count; |
274 | /* Number of sources */ | 274 | /* Number of sources */ |
275 | unsigned int num_sources; | 275 | unsigned int num_sources; |
276 | /* Number of CPUs */ | ||
277 | unsigned int num_cpus; | ||
278 | /* default senses array */ | 276 | /* default senses array */ |
279 | unsigned char *senses; | 277 | unsigned char *senses; |
280 | unsigned int senses_count; | 278 | unsigned int senses_count; |
diff --git a/arch/powerpc/include/asm/opal.h b/arch/powerpc/include/asm/opal.h new file mode 100644 index 000000000000..2893e8f5406d --- /dev/null +++ b/arch/powerpc/include/asm/opal.h | |||
@@ -0,0 +1,443 @@ | |||
1 | /* | ||
2 | * PowerNV OPAL definitions. | ||
3 | * | ||
4 | * Copyright 2011 IBM Corp. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #ifndef __OPAL_H | ||
13 | #define __OPAL_H | ||
14 | |||
15 | /****** Takeover interface ********/ | ||
16 | |||
17 | /* PAPR H-Call used to querty the HAL existence and/or instanciate | ||
18 | * it from within pHyp (tech preview only). | ||
19 | * | ||
20 | * This is exclusively used in prom_init.c | ||
21 | */ | ||
22 | |||
23 | #ifndef __ASSEMBLY__ | ||
24 | |||
25 | struct opal_takeover_args { | ||
26 | u64 k_image; /* r4 */ | ||
27 | u64 k_size; /* r5 */ | ||
28 | u64 k_entry; /* r6 */ | ||
29 | u64 k_entry2; /* r7 */ | ||
30 | u64 hal_addr; /* r8 */ | ||
31 | u64 rd_image; /* r9 */ | ||
32 | u64 rd_size; /* r10 */ | ||
33 | u64 rd_loc; /* r11 */ | ||
34 | }; | ||
35 | |||
36 | extern long opal_query_takeover(u64 *hal_size, u64 *hal_align); | ||
37 | |||
38 | extern long opal_do_takeover(struct opal_takeover_args *args); | ||
39 | |||
40 | struct rtas_args; | ||
41 | extern int opal_enter_rtas(struct rtas_args *args, | ||
42 | unsigned long data, | ||
43 | unsigned long entry); | ||
44 | |||
45 | #endif /* __ASSEMBLY__ */ | ||
46 | |||
47 | /****** OPAL APIs ******/ | ||
48 | |||
49 | /* Return codes */ | ||
50 | #define OPAL_SUCCESS 0 | ||
51 | #define OPAL_PARAMETER -1 | ||
52 | #define OPAL_BUSY -2 | ||
53 | #define OPAL_PARTIAL -3 | ||
54 | #define OPAL_CONSTRAINED -4 | ||
55 | #define OPAL_CLOSED -5 | ||
56 | #define OPAL_HARDWARE -6 | ||
57 | #define OPAL_UNSUPPORTED -7 | ||
58 | #define OPAL_PERMISSION -8 | ||
59 | #define OPAL_NO_MEM -9 | ||
60 | #define OPAL_RESOURCE -10 | ||
61 | #define OPAL_INTERNAL_ERROR -11 | ||
62 | #define OPAL_BUSY_EVENT -12 | ||
63 | #define OPAL_HARDWARE_FROZEN -13 | ||
64 | |||
65 | /* API Tokens (in r0) */ | ||
66 | #define OPAL_CONSOLE_WRITE 1 | ||
67 | #define OPAL_CONSOLE_READ 2 | ||
68 | #define OPAL_RTC_READ 3 | ||
69 | #define OPAL_RTC_WRITE 4 | ||
70 | #define OPAL_CEC_POWER_DOWN 5 | ||
71 | #define OPAL_CEC_REBOOT 6 | ||
72 | #define OPAL_READ_NVRAM 7 | ||
73 | #define OPAL_WRITE_NVRAM 8 | ||
74 | #define OPAL_HANDLE_INTERRUPT 9 | ||
75 | #define OPAL_POLL_EVENTS 10 | ||
76 | #define OPAL_PCI_SET_HUB_TCE_MEMORY 11 | ||
77 | #define OPAL_PCI_SET_PHB_TCE_MEMORY 12 | ||
78 | #define OPAL_PCI_CONFIG_READ_BYTE 13 | ||
79 | #define OPAL_PCI_CONFIG_READ_HALF_WORD 14 | ||
80 | #define OPAL_PCI_CONFIG_READ_WORD 15 | ||
81 | #define OPAL_PCI_CONFIG_WRITE_BYTE 16 | ||
82 | #define OPAL_PCI_CONFIG_WRITE_HALF_WORD 17 | ||
83 | #define OPAL_PCI_CONFIG_WRITE_WORD 18 | ||
84 | #define OPAL_SET_XIVE 19 | ||
85 | #define OPAL_GET_XIVE 20 | ||
86 | #define OPAL_GET_COMPLETION_TOKEN_STATUS 21 /* obsolete */ | ||
87 | #define OPAL_REGISTER_OPAL_EXCEPTION_HANDLER 22 | ||
88 | #define OPAL_PCI_EEH_FREEZE_STATUS 23 | ||
89 | #define OPAL_PCI_SHPC 24 | ||
90 | #define OPAL_CONSOLE_WRITE_BUFFER_SPACE 25 | ||
91 | #define OPAL_PCI_EEH_FREEZE_CLEAR 26 | ||
92 | #define OPAL_PCI_PHB_MMIO_ENABLE 27 | ||
93 | #define OPAL_PCI_SET_PHB_MEM_WINDOW 28 | ||
94 | #define OPAL_PCI_MAP_PE_MMIO_WINDOW 29 | ||
95 | #define OPAL_PCI_SET_PHB_TABLE_MEMORY 30 | ||
96 | #define OPAL_PCI_SET_PE 31 | ||
97 | #define OPAL_PCI_SET_PELTV 32 | ||
98 | #define OPAL_PCI_SET_MVE 33 | ||
99 | #define OPAL_PCI_SET_MVE_ENABLE 34 | ||
100 | #define OPAL_PCI_GET_XIVE_REISSUE 35 | ||
101 | #define OPAL_PCI_SET_XIVE_REISSUE 36 | ||
102 | #define OPAL_PCI_SET_XIVE_PE 37 | ||
103 | #define OPAL_GET_XIVE_SOURCE 38 | ||
104 | #define OPAL_GET_MSI_32 39 | ||
105 | #define OPAL_GET_MSI_64 40 | ||
106 | #define OPAL_START_CPU 41 | ||
107 | #define OPAL_QUERY_CPU_STATUS 42 | ||
108 | #define OPAL_WRITE_OPPANEL 43 | ||
109 | #define OPAL_PCI_MAP_PE_DMA_WINDOW 44 | ||
110 | #define OPAL_PCI_MAP_PE_DMA_WINDOW_REAL 45 | ||
111 | #define OPAL_PCI_RESET 49 | ||
112 | |||
113 | #ifndef __ASSEMBLY__ | ||
114 | |||
115 | /* Other enums */ | ||
116 | enum OpalVendorApiTokens { | ||
117 | OPAL_START_VENDOR_API_RANGE = 1000, OPAL_END_VENDOR_API_RANGE = 1999 | ||
118 | }; | ||
119 | enum OpalFreezeState { | ||
120 | OPAL_EEH_STOPPED_NOT_FROZEN = 0, | ||
121 | OPAL_EEH_STOPPED_MMIO_FREEZE = 1, | ||
122 | OPAL_EEH_STOPPED_DMA_FREEZE = 2, | ||
123 | OPAL_EEH_STOPPED_MMIO_DMA_FREEZE = 3, | ||
124 | OPAL_EEH_STOPPED_RESET = 4, | ||
125 | OPAL_EEH_STOPPED_TEMP_UNAVAIL = 5, | ||
126 | OPAL_EEH_STOPPED_PERM_UNAVAIL = 6 | ||
127 | }; | ||
128 | enum OpalEehFreezeActionToken { | ||
129 | OPAL_EEH_ACTION_CLEAR_FREEZE_MMIO = 1, | ||
130 | OPAL_EEH_ACTION_CLEAR_FREEZE_DMA = 2, | ||
131 | OPAL_EEH_ACTION_CLEAR_FREEZE_ALL = 3 | ||
132 | }; | ||
133 | enum OpalPciStatusToken { | ||
134 | OPAL_EEH_PHB_NO_ERROR = 0, | ||
135 | OPAL_EEH_PHB_FATAL = 1, | ||
136 | OPAL_EEH_PHB_RECOVERABLE = 2, | ||
137 | OPAL_EEH_PHB_BUS_ERROR = 3, | ||
138 | OPAL_EEH_PCI_NO_DEVSEL = 4, | ||
139 | OPAL_EEH_PCI_TA = 5, | ||
140 | OPAL_EEH_PCIEX_UR = 6, | ||
141 | OPAL_EEH_PCIEX_CA = 7, | ||
142 | OPAL_EEH_PCI_MMIO_ERROR = 8, | ||
143 | OPAL_EEH_PCI_DMA_ERROR = 9 | ||
144 | }; | ||
145 | enum OpalShpcAction { | ||
146 | OPAL_SHPC_GET_LINK_STATE = 0, | ||
147 | OPAL_SHPC_GET_SLOT_STATE = 1 | ||
148 | }; | ||
149 | enum OpalShpcLinkState { | ||
150 | OPAL_SHPC_LINK_DOWN = 0, | ||
151 | OPAL_SHPC_LINK_UP = 1 | ||
152 | }; | ||
153 | enum OpalMmioWindowType { | ||
154 | OPAL_M32_WINDOW_TYPE = 1, | ||
155 | OPAL_M64_WINDOW_TYPE = 2, | ||
156 | OPAL_IO_WINDOW_TYPE = 3 | ||
157 | }; | ||
158 | enum OpalShpcSlotState { | ||
159 | OPAL_SHPC_DEV_NOT_PRESENT = 0, | ||
160 | OPAL_SHPC_DEV_PRESENT = 1 | ||
161 | }; | ||
162 | enum OpalExceptionHandler { | ||
163 | OPAL_MACHINE_CHECK_HANDLER = 1, | ||
164 | OPAL_HYPERVISOR_MAINTENANCE_HANDLER = 2, | ||
165 | OPAL_SOFTPATCH_HANDLER = 3 | ||
166 | }; | ||
167 | enum OpalPendingState { | ||
168 | OPAL_EVENT_OPAL_INTERNAL = 0x1, | ||
169 | OPAL_EVENT_NVRAM = 0x2, | ||
170 | OPAL_EVENT_RTC = 0x4, | ||
171 | OPAL_EVENT_CONSOLE_OUTPUT = 0x8, | ||
172 | OPAL_EVENT_CONSOLE_INPUT = 0x10 | ||
173 | }; | ||
174 | |||
175 | /* Machine check related definitions */ | ||
176 | enum OpalMCE_Version { | ||
177 | OpalMCE_V1 = 1, | ||
178 | }; | ||
179 | |||
180 | enum OpalMCE_Severity { | ||
181 | OpalMCE_SEV_NO_ERROR = 0, | ||
182 | OpalMCE_SEV_WARNING = 1, | ||
183 | OpalMCE_SEV_ERROR_SYNC = 2, | ||
184 | OpalMCE_SEV_FATAL = 3, | ||
185 | }; | ||
186 | |||
187 | enum OpalMCE_Disposition { | ||
188 | OpalMCE_DISPOSITION_RECOVERED = 0, | ||
189 | OpalMCE_DISPOSITION_NOT_RECOVERED = 1, | ||
190 | }; | ||
191 | |||
192 | enum OpalMCE_Initiator { | ||
193 | OpalMCE_INITIATOR_UNKNOWN = 0, | ||
194 | OpalMCE_INITIATOR_CPU = 1, | ||
195 | }; | ||
196 | |||
197 | enum OpalMCE_ErrorType { | ||
198 | OpalMCE_ERROR_TYPE_UNKNOWN = 0, | ||
199 | OpalMCE_ERROR_TYPE_UE = 1, | ||
200 | OpalMCE_ERROR_TYPE_SLB = 2, | ||
201 | OpalMCE_ERROR_TYPE_ERAT = 3, | ||
202 | OpalMCE_ERROR_TYPE_TLB = 4, | ||
203 | }; | ||
204 | |||
205 | enum OpalMCE_UeErrorType { | ||
206 | OpalMCE_UE_ERROR_INDETERMINATE = 0, | ||
207 | OpalMCE_UE_ERROR_IFETCH = 1, | ||
208 | OpalMCE_UE_ERROR_PAGE_TABLE_WALK_IFETCH = 2, | ||
209 | OpalMCE_UE_ERROR_LOAD_STORE = 3, | ||
210 | OpalMCE_UE_ERROR_PAGE_TABLE_WALK_LOAD_STORE = 4, | ||
211 | }; | ||
212 | |||
213 | enum OpalMCE_SlbErrorType { | ||
214 | OpalMCE_SLB_ERROR_INDETERMINATE = 0, | ||
215 | OpalMCE_SLB_ERROR_PARITY = 1, | ||
216 | OpalMCE_SLB_ERROR_MULTIHIT = 2, | ||
217 | }; | ||
218 | |||
219 | enum OpalMCE_EratErrorType { | ||
220 | OpalMCE_ERAT_ERROR_INDETERMINATE = 0, | ||
221 | OpalMCE_ERAT_ERROR_PARITY = 1, | ||
222 | OpalMCE_ERAT_ERROR_MULTIHIT = 2, | ||
223 | }; | ||
224 | |||
225 | enum OpalMCE_TlbErrorType { | ||
226 | OpalMCE_TLB_ERROR_INDETERMINATE = 0, | ||
227 | OpalMCE_TLB_ERROR_PARITY = 1, | ||
228 | OpalMCE_TLB_ERROR_MULTIHIT = 2, | ||
229 | }; | ||
230 | |||
231 | enum OpalThreadStatus { | ||
232 | OPAL_THREAD_INACTIVE = 0x0, | ||
233 | OPAL_THREAD_STARTED = 0x1 | ||
234 | }; | ||
235 | |||
236 | enum OpalPciBusCompare { | ||
237 | OpalPciBusAny = 0, /* Any bus number match */ | ||
238 | OpalPciBus3Bits = 2, /* Match top 3 bits of bus number */ | ||
239 | OpalPciBus4Bits = 3, /* Match top 4 bits of bus number */ | ||
240 | OpalPciBus5Bits = 4, /* Match top 5 bits of bus number */ | ||
241 | OpalPciBus6Bits = 5, /* Match top 6 bits of bus number */ | ||
242 | OpalPciBus7Bits = 6, /* Match top 7 bits of bus number */ | ||
243 | OpalPciBusAll = 7, /* Match bus number exactly */ | ||
244 | }; | ||
245 | |||
246 | enum OpalDeviceCompare { | ||
247 | OPAL_IGNORE_RID_DEVICE_NUMBER = 0, | ||
248 | OPAL_COMPARE_RID_DEVICE_NUMBER = 1 | ||
249 | }; | ||
250 | |||
251 | enum OpalFuncCompare { | ||
252 | OPAL_IGNORE_RID_FUNCTION_NUMBER = 0, | ||
253 | OPAL_COMPARE_RID_FUNCTION_NUMBER = 1 | ||
254 | }; | ||
255 | |||
256 | enum OpalPeAction { | ||
257 | OPAL_UNMAP_PE = 0, | ||
258 | OPAL_MAP_PE = 1 | ||
259 | }; | ||
260 | |||
261 | enum OpalPciResetAndReinitScope { | ||
262 | OPAL_PHB_COMPLETE = 1, OPAL_PCI_LINK = 2, OPAL_PHB_ERROR = 3, | ||
263 | OPAL_PCI_HOT_RESET = 4, OPAL_PCI_FUNDAMENTAL_RESET = 5, | ||
264 | OPAL_PCI_IODA_RESET = 6, | ||
265 | }; | ||
266 | |||
267 | enum OpalPciResetState { OPAL_DEASSERT_RESET = 0, OPAL_ASSERT_RESET = 1 }; | ||
268 | |||
269 | struct opal_machine_check_event { | ||
270 | enum OpalMCE_Version version:8; /* 0x00 */ | ||
271 | uint8_t in_use; /* 0x01 */ | ||
272 | enum OpalMCE_Severity severity:8; /* 0x02 */ | ||
273 | enum OpalMCE_Initiator initiator:8; /* 0x03 */ | ||
274 | enum OpalMCE_ErrorType error_type:8; /* 0x04 */ | ||
275 | enum OpalMCE_Disposition disposition:8; /* 0x05 */ | ||
276 | uint8_t reserved_1[2]; /* 0x06 */ | ||
277 | uint64_t gpr3; /* 0x08 */ | ||
278 | uint64_t srr0; /* 0x10 */ | ||
279 | uint64_t srr1; /* 0x18 */ | ||
280 | union { /* 0x20 */ | ||
281 | struct { | ||
282 | enum OpalMCE_UeErrorType ue_error_type:8; | ||
283 | uint8_t effective_address_provided; | ||
284 | uint8_t physical_address_provided; | ||
285 | uint8_t reserved_1[5]; | ||
286 | uint64_t effective_address; | ||
287 | uint64_t physical_address; | ||
288 | uint8_t reserved_2[8]; | ||
289 | } ue_error; | ||
290 | |||
291 | struct { | ||
292 | enum OpalMCE_SlbErrorType slb_error_type:8; | ||
293 | uint8_t effective_address_provided; | ||
294 | uint8_t reserved_1[6]; | ||
295 | uint64_t effective_address; | ||
296 | uint8_t reserved_2[16]; | ||
297 | } slb_error; | ||
298 | |||
299 | struct { | ||
300 | enum OpalMCE_EratErrorType erat_error_type:8; | ||
301 | uint8_t effective_address_provided; | ||
302 | uint8_t reserved_1[6]; | ||
303 | uint64_t effective_address; | ||
304 | uint8_t reserved_2[16]; | ||
305 | } erat_error; | ||
306 | |||
307 | struct { | ||
308 | enum OpalMCE_TlbErrorType tlb_error_type:8; | ||
309 | uint8_t effective_address_provided; | ||
310 | uint8_t reserved_1[6]; | ||
311 | uint64_t effective_address; | ||
312 | uint8_t reserved_2[16]; | ||
313 | } tlb_error; | ||
314 | } u; | ||
315 | }; | ||
316 | |||
317 | typedef struct oppanel_line { | ||
318 | /* XXX */ | ||
319 | } oppanel_line_t; | ||
320 | |||
321 | /* API functions */ | ||
322 | int64_t opal_console_write(int64_t term_number, int64_t *length, | ||
323 | const uint8_t *buffer); | ||
324 | int64_t opal_console_read(int64_t term_number, int64_t *length, | ||
325 | uint8_t *buffer); | ||
326 | int64_t opal_console_write_buffer_space(int64_t term_number, | ||
327 | int64_t *length); | ||
328 | int64_t opal_rtc_read(uint32_t *year_month_day, | ||
329 | uint64_t *hour_minute_second_millisecond); | ||
330 | int64_t opal_rtc_write(uint32_t year_month_day, | ||
331 | uint64_t hour_minute_second_millisecond); | ||
332 | int64_t opal_cec_power_down(uint64_t request); | ||
333 | int64_t opal_cec_reboot(void); | ||
334 | int64_t opal_read_nvram(uint64_t buffer, uint64_t size, uint64_t offset); | ||
335 | int64_t opal_write_nvram(uint64_t buffer, uint64_t size, uint64_t offset); | ||
336 | int64_t opal_handle_interrupt(uint64_t isn, uint64_t *outstanding_event_mask); | ||
337 | int64_t opal_poll_events(uint64_t *outstanding_event_mask); | ||
338 | int64_t opal_pci_set_hub_tce_memory(uint64_t hub_id, uint64_t tce_mem_addr, | ||
339 | uint64_t tce_mem_size); | ||
340 | int64_t opal_pci_set_phb_tce_memory(uint64_t phb_id, uint64_t tce_mem_addr, | ||
341 | uint64_t tce_mem_size); | ||
342 | int64_t opal_pci_config_read_byte(uint64_t phb_id, uint64_t bus_dev_func, | ||
343 | uint64_t offset, uint8_t *data); | ||
344 | int64_t opal_pci_config_read_half_word(uint64_t phb_id, uint64_t bus_dev_func, | ||
345 | uint64_t offset, uint16_t *data); | ||
346 | int64_t opal_pci_config_read_word(uint64_t phb_id, uint64_t bus_dev_func, | ||
347 | uint64_t offset, uint32_t *data); | ||
348 | int64_t opal_pci_config_write_byte(uint64_t phb_id, uint64_t bus_dev_func, | ||
349 | uint64_t offset, uint8_t data); | ||
350 | int64_t opal_pci_config_write_half_word(uint64_t phb_id, uint64_t bus_dev_func, | ||
351 | uint64_t offset, uint16_t data); | ||
352 | int64_t opal_pci_config_write_word(uint64_t phb_id, uint64_t bus_dev_func, | ||
353 | uint64_t offset, uint32_t data); | ||
354 | int64_t opal_set_xive(uint32_t isn, uint16_t server, uint8_t priority); | ||
355 | int64_t opal_get_xive(uint32_t isn, uint16_t *server, uint8_t *priority); | ||
356 | int64_t opal_register_exception_handler(uint64_t opal_exception, | ||
357 | uint64_t handler_address, | ||
358 | uint64_t glue_cache_line); | ||
359 | int64_t opal_pci_eeh_freeze_status(uint64_t phb_id, uint64_t pe_number, | ||
360 | uint8_t *freeze_state, | ||
361 | uint16_t *pci_error_type, | ||
362 | uint64_t *phb_status); | ||
363 | int64_t opal_pci_eeh_freeze_clear(uint64_t phb_id, uint64_t pe_number, | ||
364 | uint64_t eeh_action_token); | ||
365 | int64_t opal_pci_shpc(uint64_t phb_id, uint64_t shpc_action, uint8_t *state); | ||
366 | |||
367 | |||
368 | |||
369 | int64_t opal_pci_phb_mmio_enable(uint64_t phb_id, uint16_t window_type, | ||
370 | uint16_t window_num, uint16_t enable); | ||
371 | int64_t opal_pci_set_phb_mem_window(uint64_t phb_id, uint16_t window_type, | ||
372 | uint16_t window_num, | ||
373 | uint64_t starting_real_address, | ||
374 | uint64_t starting_pci_address, | ||
375 | uint16_t segment_size); | ||
376 | int64_t opal_pci_map_pe_mmio_window(uint64_t phb_id, uint16_t pe_number, | ||
377 | uint16_t window_type, uint16_t window_num, | ||
378 | uint16_t segment_num); | ||
379 | int64_t opal_pci_set_phb_table_memory(uint64_t phb_id, uint64_t rtt_addr, | ||
380 | uint64_t ivt_addr, uint64_t ivt_len, | ||
381 | uint64_t reject_array_addr, | ||
382 | uint64_t peltv_addr); | ||
383 | int64_t opal_pci_set_pe(uint64_t phb_id, uint64_t pe_number, uint64_t bus_dev_func, | ||
384 | uint8_t bus_compare, uint8_t dev_compare, uint8_t func_compare, | ||
385 | uint8_t pe_action); | ||
386 | int64_t opal_pci_set_peltv(uint64_t phb_id, uint32_t parent_pe, uint32_t child_pe, | ||
387 | uint8_t state); | ||
388 | int64_t opal_pci_set_mve(uint64_t phb_id, uint32_t mve_number, uint32_t pe_number); | ||
389 | int64_t opal_pci_set_mve_enable(uint64_t phb_id, uint32_t mve_number, | ||
390 | uint32_t state); | ||
391 | int64_t opal_pci_get_xive_reissue(uint64_t phb_id, uint32_t xive_number, | ||
392 | uint8_t *p_bit, uint8_t *q_bit); | ||
393 | int64_t opal_pci_set_xive_reissue(uint64_t phb_id, uint32_t xive_number, | ||
394 | uint8_t p_bit, uint8_t q_bit); | ||
395 | int64_t opal_pci_set_xive_pe(uint64_t phb_id, uint32_t pe_number, | ||
396 | uint32_t xive_num); | ||
397 | int64_t opal_get_xive_source(uint64_t phb_id, uint32_t xive_num, | ||
398 | int32_t *interrupt_source_number); | ||
399 | int64_t opal_get_msi_32(uint64_t phb_id, uint32_t mve_number, uint32_t xive_num, | ||
400 | uint8_t msi_range, uint32_t *msi_address, | ||
401 | uint32_t *message_data); | ||
402 | int64_t opal_get_msi_64(uint64_t phb_id, uint32_t mve_number, | ||
403 | uint32_t xive_num, uint8_t msi_range, | ||
404 | uint64_t *msi_address, uint32_t *message_data); | ||
405 | int64_t opal_start_cpu(uint64_t thread_number, uint64_t start_address); | ||
406 | int64_t opal_query_cpu_status(uint64_t thread_number, uint8_t *thread_status); | ||
407 | int64_t opal_write_oppanel(oppanel_line_t *lines, uint64_t num_lines); | ||
408 | int64_t opal_pci_map_pe_dma_window(uint64_t phb_id, uint16_t pe_number, uint16_t window_id, | ||
409 | uint16_t tce_levels, uint64_t tce_table_addr, | ||
410 | uint64_t tce_table_size, uint64_t tce_page_size); | ||
411 | int64_t opal_pci_map_pe_dma_window_real(uint64_t phb_id, uint16_t pe_number, | ||
412 | uint16_t dma_window_number, uint64_t pci_start_addr, | ||
413 | uint64_t pci_mem_size); | ||
414 | int64_t opal_pci_reset(uint64_t phb_id, uint8_t reset_scope, uint8_t assert_state); | ||
415 | |||
416 | /* Internal functions */ | ||
417 | extern int early_init_dt_scan_opal(unsigned long node, const char *uname, int depth, void *data); | ||
418 | |||
419 | extern int opal_get_chars(uint32_t vtermno, char *buf, int count); | ||
420 | extern int opal_put_chars(uint32_t vtermno, const char *buf, int total_len); | ||
421 | |||
422 | extern void hvc_opal_init_early(void); | ||
423 | |||
424 | /* Internal functions */ | ||
425 | extern int early_init_dt_scan_opal(unsigned long node, const char *uname, | ||
426 | int depth, void *data); | ||
427 | |||
428 | extern int opal_get_chars(uint32_t vtermno, char *buf, int count); | ||
429 | extern int opal_put_chars(uint32_t vtermno, const char *buf, int total_len); | ||
430 | |||
431 | extern void hvc_opal_init_early(void); | ||
432 | |||
433 | struct rtc_time; | ||
434 | extern int opal_set_rtc_time(struct rtc_time *tm); | ||
435 | extern void opal_get_rtc_time(struct rtc_time *tm); | ||
436 | extern unsigned long opal_get_boot_time(void); | ||
437 | extern void opal_nvram_init(void); | ||
438 | |||
439 | extern int opal_machine_check(struct pt_regs *regs); | ||
440 | |||
441 | #endif /* __ASSEMBLY__ */ | ||
442 | |||
443 | #endif /* __OPAL_H */ | ||
diff --git a/arch/powerpc/include/asm/paca.h b/arch/powerpc/include/asm/paca.h index 516bfb3f47d9..17722c73ba2e 100644 --- a/arch/powerpc/include/asm/paca.h +++ b/arch/powerpc/include/asm/paca.h | |||
@@ -43,6 +43,7 @@ extern unsigned int debug_smp_processor_id(void); /* from linux/smp.h */ | |||
43 | #define get_slb_shadow() (get_paca()->slb_shadow_ptr) | 43 | #define get_slb_shadow() (get_paca()->slb_shadow_ptr) |
44 | 44 | ||
45 | struct task_struct; | 45 | struct task_struct; |
46 | struct opal_machine_check_event; | ||
46 | 47 | ||
47 | /* | 48 | /* |
48 | * Defines the layout of the paca. | 49 | * Defines the layout of the paca. |
@@ -135,6 +136,13 @@ struct paca_struct { | |||
135 | u8 io_sync; /* writel() needs spin_unlock sync */ | 136 | u8 io_sync; /* writel() needs spin_unlock sync */ |
136 | u8 irq_work_pending; /* IRQ_WORK interrupt while soft-disable */ | 137 | u8 irq_work_pending; /* IRQ_WORK interrupt while soft-disable */ |
137 | 138 | ||
139 | #ifdef CONFIG_PPC_POWERNV | ||
140 | /* Pointer to OPAL machine check event structure set by the | ||
141 | * early exception handler for use by high level C handler | ||
142 | */ | ||
143 | struct opal_machine_check_event *opal_mc_evt; | ||
144 | #endif | ||
145 | |||
138 | /* Stuff for accurate time accounting */ | 146 | /* Stuff for accurate time accounting */ |
139 | u64 user_time; /* accumulated usermode TB ticks */ | 147 | u64 user_time; /* accumulated usermode TB ticks */ |
140 | u64 system_time; /* accumulated system TB ticks */ | 148 | u64 system_time; /* accumulated system TB ticks */ |
diff --git a/arch/powerpc/include/asm/page.h b/arch/powerpc/include/asm/page.h index 2cd664ef0a5e..dd9c4fd038e0 100644 --- a/arch/powerpc/include/asm/page.h +++ b/arch/powerpc/include/asm/page.h | |||
@@ -36,6 +36,18 @@ | |||
36 | 36 | ||
37 | #define PAGE_SIZE (ASM_CONST(1) << PAGE_SHIFT) | 37 | #define PAGE_SIZE (ASM_CONST(1) << PAGE_SHIFT) |
38 | 38 | ||
39 | #ifndef __ASSEMBLY__ | ||
40 | #ifdef CONFIG_HUGETLB_PAGE | ||
41 | extern unsigned int HPAGE_SHIFT; | ||
42 | #else | ||
43 | #define HPAGE_SHIFT PAGE_SHIFT | ||
44 | #endif | ||
45 | #define HPAGE_SIZE ((1UL) << HPAGE_SHIFT) | ||
46 | #define HPAGE_MASK (~(HPAGE_SIZE - 1)) | ||
47 | #define HUGETLB_PAGE_ORDER (HPAGE_SHIFT - PAGE_SHIFT) | ||
48 | #define HUGE_MAX_HSTATE (MMU_PAGE_COUNT-1) | ||
49 | #endif | ||
50 | |||
39 | /* We do define AT_SYSINFO_EHDR but don't use the gate mechanism */ | 51 | /* We do define AT_SYSINFO_EHDR but don't use the gate mechanism */ |
40 | #define __HAVE_ARCH_GATE_AREA 1 | 52 | #define __HAVE_ARCH_GATE_AREA 1 |
41 | 53 | ||
@@ -158,6 +170,24 @@ extern phys_addr_t kernstart_addr; | |||
158 | #define is_kernel_addr(x) ((x) >= PAGE_OFFSET) | 170 | #define is_kernel_addr(x) ((x) >= PAGE_OFFSET) |
159 | #endif | 171 | #endif |
160 | 172 | ||
173 | /* | ||
174 | * Use the top bit of the higher-level page table entries to indicate whether | ||
175 | * the entries we point to contain hugepages. This works because we know that | ||
176 | * the page tables live in kernel space. If we ever decide to support having | ||
177 | * page tables at arbitrary addresses, this breaks and will have to change. | ||
178 | */ | ||
179 | #ifdef CONFIG_PPC64 | ||
180 | #define PD_HUGE 0x8000000000000000 | ||
181 | #else | ||
182 | #define PD_HUGE 0x80000000 | ||
183 | #endif | ||
184 | |||
185 | /* | ||
186 | * Some number of bits at the level of the page table that points to | ||
187 | * a hugepte are used to encode the size. This masks those bits. | ||
188 | */ | ||
189 | #define HUGEPD_SHIFT_MASK 0x3f | ||
190 | |||
161 | #ifndef __ASSEMBLY__ | 191 | #ifndef __ASSEMBLY__ |
162 | 192 | ||
163 | #undef STRICT_MM_TYPECHECKS | 193 | #undef STRICT_MM_TYPECHECKS |
@@ -243,7 +273,6 @@ typedef unsigned long pgprot_t; | |||
243 | #endif | 273 | #endif |
244 | 274 | ||
245 | typedef struct { signed long pd; } hugepd_t; | 275 | typedef struct { signed long pd; } hugepd_t; |
246 | #define HUGEPD_SHIFT_MASK 0x3f | ||
247 | 276 | ||
248 | #ifdef CONFIG_HUGETLB_PAGE | 277 | #ifdef CONFIG_HUGETLB_PAGE |
249 | static inline int hugepd_ok(hugepd_t hpd) | 278 | static inline int hugepd_ok(hugepd_t hpd) |
diff --git a/arch/powerpc/include/asm/page_64.h b/arch/powerpc/include/asm/page_64.h index 9356262fd3cc..fb40ede6bc0d 100644 --- a/arch/powerpc/include/asm/page_64.h +++ b/arch/powerpc/include/asm/page_64.h | |||
@@ -64,17 +64,6 @@ extern void copy_page(void *to, void *from); | |||
64 | /* Log 2 of page table size */ | 64 | /* Log 2 of page table size */ |
65 | extern u64 ppc64_pft_size; | 65 | extern u64 ppc64_pft_size; |
66 | 66 | ||
67 | /* Large pages size */ | ||
68 | #ifdef CONFIG_HUGETLB_PAGE | ||
69 | extern unsigned int HPAGE_SHIFT; | ||
70 | #else | ||
71 | #define HPAGE_SHIFT PAGE_SHIFT | ||
72 | #endif | ||
73 | #define HPAGE_SIZE ((1UL) << HPAGE_SHIFT) | ||
74 | #define HPAGE_MASK (~(HPAGE_SIZE - 1)) | ||
75 | #define HUGETLB_PAGE_ORDER (HPAGE_SHIFT - PAGE_SHIFT) | ||
76 | #define HUGE_MAX_HSTATE (MMU_PAGE_COUNT-1) | ||
77 | |||
78 | #endif /* __ASSEMBLY__ */ | 67 | #endif /* __ASSEMBLY__ */ |
79 | 68 | ||
80 | #ifdef CONFIG_PPC_MM_SLICES | 69 | #ifdef CONFIG_PPC_MM_SLICES |
diff --git a/arch/powerpc/include/asm/pte-book3e.h b/arch/powerpc/include/asm/pte-book3e.h index 082d515930a2..0156702ba24e 100644 --- a/arch/powerpc/include/asm/pte-book3e.h +++ b/arch/powerpc/include/asm/pte-book3e.h | |||
@@ -72,6 +72,9 @@ | |||
72 | #define PTE_RPN_SHIFT (24) | 72 | #define PTE_RPN_SHIFT (24) |
73 | #endif | 73 | #endif |
74 | 74 | ||
75 | #define PTE_WIMGE_SHIFT (19) | ||
76 | #define PTE_BAP_SHIFT (2) | ||
77 | |||
75 | /* On 32-bit, we never clear the top part of the PTE */ | 78 | /* On 32-bit, we never clear the top part of the PTE */ |
76 | #ifdef CONFIG_PPC32 | 79 | #ifdef CONFIG_PPC32 |
77 | #define _PTE_NONE_MASK 0xffffffff00000000ULL | 80 | #define _PTE_NONE_MASK 0xffffffff00000000ULL |
diff --git a/arch/powerpc/include/asm/reg_booke.h b/arch/powerpc/include/asm/reg_booke.h index 9ec0b39f9ddc..28cdbd9f399c 100644 --- a/arch/powerpc/include/asm/reg_booke.h +++ b/arch/powerpc/include/asm/reg_booke.h | |||
@@ -548,6 +548,9 @@ | |||
548 | #define L1CSR1_ICFI 0x00000002 /* Instr Cache Flash Invalidate */ | 548 | #define L1CSR1_ICFI 0x00000002 /* Instr Cache Flash Invalidate */ |
549 | #define L1CSR1_ICE 0x00000001 /* Instr Cache Enable */ | 549 | #define L1CSR1_ICE 0x00000001 /* Instr Cache Enable */ |
550 | 550 | ||
551 | /* Bit definitions for L1CSR2. */ | ||
552 | #define L1CSR2_DCWS 0x40000000 /* Data Cache write shadow */ | ||
553 | |||
551 | /* Bit definitions for L2CSR0. */ | 554 | /* Bit definitions for L2CSR0. */ |
552 | #define L2CSR0_L2E 0x80000000 /* L2 Cache Enable */ | 555 | #define L2CSR0_L2E 0x80000000 /* L2 Cache Enable */ |
553 | #define L2CSR0_L2PE 0x40000000 /* L2 Cache Parity/ECC Enable */ | 556 | #define L2CSR0_L2PE 0x40000000 /* L2 Cache Parity/ECC Enable */ |
diff --git a/arch/powerpc/include/asm/rtas.h b/arch/powerpc/include/asm/rtas.h index 58625d1e7802..41f69ae79d4e 100644 --- a/arch/powerpc/include/asm/rtas.h +++ b/arch/powerpc/include/asm/rtas.h | |||
@@ -249,10 +249,12 @@ extern void pSeries_log_error(char *buf, unsigned int err_type, int fatal); | |||
249 | #define ERR_FLAG_ALREADY_LOGGED 0x0 | 249 | #define ERR_FLAG_ALREADY_LOGGED 0x0 |
250 | #define ERR_FLAG_BOOT 0x1 /* log was pulled from NVRAM on boot */ | 250 | #define ERR_FLAG_BOOT 0x1 /* log was pulled from NVRAM on boot */ |
251 | #define ERR_TYPE_RTAS_LOG 0x2 /* from rtas event-scan */ | 251 | #define ERR_TYPE_RTAS_LOG 0x2 /* from rtas event-scan */ |
252 | #define ERR_TYPE_KERNEL_PANIC 0x4 /* from panic() */ | 252 | #define ERR_TYPE_KERNEL_PANIC 0x4 /* from die()/panic() */ |
253 | #define ERR_TYPE_KERNEL_PANIC_GZ 0x8 /* ditto, compressed */ | ||
253 | 254 | ||
254 | /* All the types and not flags */ | 255 | /* All the types and not flags */ |
255 | #define ERR_TYPE_MASK (ERR_TYPE_RTAS_LOG | ERR_TYPE_KERNEL_PANIC) | 256 | #define ERR_TYPE_MASK \ |
257 | (ERR_TYPE_RTAS_LOG | ERR_TYPE_KERNEL_PANIC | ERR_TYPE_KERNEL_PANIC_GZ) | ||
256 | 258 | ||
257 | #define RTAS_DEBUG KERN_DEBUG "RTAS: " | 259 | #define RTAS_DEBUG KERN_DEBUG "RTAS: " |
258 | 260 | ||
diff --git a/arch/powerpc/include/asm/smp.h b/arch/powerpc/include/asm/smp.h index 15a70b7f638b..adba970ce918 100644 --- a/arch/powerpc/include/asm/smp.h +++ b/arch/powerpc/include/asm/smp.h | |||
@@ -65,6 +65,7 @@ int generic_cpu_disable(void); | |||
65 | void generic_cpu_die(unsigned int cpu); | 65 | void generic_cpu_die(unsigned int cpu); |
66 | void generic_mach_cpu_die(void); | 66 | void generic_mach_cpu_die(void); |
67 | void generic_set_cpu_dead(unsigned int cpu); | 67 | void generic_set_cpu_dead(unsigned int cpu); |
68 | int generic_check_cpu_restart(unsigned int cpu); | ||
68 | #endif | 69 | #endif |
69 | 70 | ||
70 | #ifdef CONFIG_PPC64 | 71 | #ifdef CONFIG_PPC64 |
diff --git a/arch/powerpc/include/asm/sparsemem.h b/arch/powerpc/include/asm/sparsemem.h index 54a47ea2c3aa..0c5fa3145615 100644 --- a/arch/powerpc/include/asm/sparsemem.h +++ b/arch/powerpc/include/asm/sparsemem.h | |||
@@ -16,7 +16,7 @@ | |||
16 | #endif /* CONFIG_SPARSEMEM */ | 16 | #endif /* CONFIG_SPARSEMEM */ |
17 | 17 | ||
18 | #ifdef CONFIG_MEMORY_HOTPLUG | 18 | #ifdef CONFIG_MEMORY_HOTPLUG |
19 | extern void create_section_mapping(unsigned long start, unsigned long end); | 19 | extern int create_section_mapping(unsigned long start, unsigned long end); |
20 | extern int remove_section_mapping(unsigned long start, unsigned long end); | 20 | extern int remove_section_mapping(unsigned long start, unsigned long end); |
21 | #ifdef CONFIG_NUMA | 21 | #ifdef CONFIG_NUMA |
22 | extern int hot_add_scn_to_nid(unsigned long scn_addr); | 22 | extern int hot_add_scn_to_nid(unsigned long scn_addr); |
diff --git a/arch/powerpc/include/asm/spu.h b/arch/powerpc/include/asm/spu.h index 0c8b35d75232..4e360bd4a35a 100644 --- a/arch/powerpc/include/asm/spu.h +++ b/arch/powerpc/include/asm/spu.h | |||
@@ -26,6 +26,7 @@ | |||
26 | 26 | ||
27 | #include <linux/workqueue.h> | 27 | #include <linux/workqueue.h> |
28 | #include <linux/sysdev.h> | 28 | #include <linux/sysdev.h> |
29 | #include <linux/mutex.h> | ||
29 | 30 | ||
30 | #define LS_SIZE (256 * 1024) | 31 | #define LS_SIZE (256 * 1024) |
31 | #define LS_ADDR_MASK (LS_SIZE - 1) | 32 | #define LS_ADDR_MASK (LS_SIZE - 1) |
diff --git a/arch/powerpc/include/asm/systbl.h b/arch/powerpc/include/asm/systbl.h index fa0d27a400de..559ae1ee6706 100644 --- a/arch/powerpc/include/asm/systbl.h +++ b/arch/powerpc/include/asm/systbl.h | |||
@@ -354,3 +354,5 @@ COMPAT_SYS_SPU(clock_adjtime) | |||
354 | SYSCALL_SPU(syncfs) | 354 | SYSCALL_SPU(syncfs) |
355 | COMPAT_SYS_SPU(sendmmsg) | 355 | COMPAT_SYS_SPU(sendmmsg) |
356 | SYSCALL_SPU(setns) | 356 | SYSCALL_SPU(setns) |
357 | COMPAT_SYS(process_vm_readv) | ||
358 | COMPAT_SYS(process_vm_writev) | ||
diff --git a/arch/powerpc/include/asm/topology.h b/arch/powerpc/include/asm/topology.h index 7ef0d90defc8..1e104af08483 100644 --- a/arch/powerpc/include/asm/topology.h +++ b/arch/powerpc/include/asm/topology.h | |||
@@ -19,14 +19,10 @@ struct device_node; | |||
19 | #define RECLAIM_DISTANCE 10 | 19 | #define RECLAIM_DISTANCE 10 |
20 | 20 | ||
21 | /* | 21 | /* |
22 | * Before going off node we want the VM to try and reclaim from the local | 22 | * Avoid creating an extra level of balancing (SD_ALLNODES) on the largest |
23 | * node. It does this if the remote distance is larger than RECLAIM_DISTANCE. | 23 | * POWER7 boxes which have a maximum of 32 nodes. |
24 | * With the default REMOTE_DISTANCE of 20 and the default RECLAIM_DISTANCE of | ||
25 | * 20, we never reclaim and go off node straight away. | ||
26 | * | ||
27 | * To fix this we choose a smaller value of RECLAIM_DISTANCE. | ||
28 | */ | 24 | */ |
29 | #define RECLAIM_DISTANCE 10 | 25 | #define SD_NODES_PER_DOMAIN 32 |
30 | 26 | ||
31 | #include <asm/mmzone.h> | 27 | #include <asm/mmzone.h> |
32 | 28 | ||
@@ -69,11 +65,11 @@ static inline int pcibus_to_node(struct pci_bus *bus) | |||
69 | .forkexec_idx = 0, \ | 65 | .forkexec_idx = 0, \ |
70 | \ | 66 | \ |
71 | .flags = 1*SD_LOAD_BALANCE \ | 67 | .flags = 1*SD_LOAD_BALANCE \ |
72 | | 1*SD_BALANCE_NEWIDLE \ | 68 | | 0*SD_BALANCE_NEWIDLE \ |
73 | | 1*SD_BALANCE_EXEC \ | 69 | | 1*SD_BALANCE_EXEC \ |
74 | | 1*SD_BALANCE_FORK \ | 70 | | 1*SD_BALANCE_FORK \ |
75 | | 0*SD_BALANCE_WAKE \ | 71 | | 0*SD_BALANCE_WAKE \ |
76 | | 0*SD_WAKE_AFFINE \ | 72 | | 1*SD_WAKE_AFFINE \ |
77 | | 0*SD_PREFER_LOCAL \ | 73 | | 0*SD_PREFER_LOCAL \ |
78 | | 0*SD_SHARE_CPUPOWER \ | 74 | | 0*SD_SHARE_CPUPOWER \ |
79 | | 0*SD_POWERSAVINGS_BALANCE \ | 75 | | 0*SD_POWERSAVINGS_BALANCE \ |
diff --git a/arch/powerpc/include/asm/udbg.h b/arch/powerpc/include/asm/udbg.h index 93e05d1b34b2..8338aef5a4d3 100644 --- a/arch/powerpc/include/asm/udbg.h +++ b/arch/powerpc/include/asm/udbg.h | |||
@@ -54,6 +54,10 @@ extern void __init udbg_init_40x_realmode(void); | |||
54 | extern void __init udbg_init_cpm(void); | 54 | extern void __init udbg_init_cpm(void); |
55 | extern void __init udbg_init_usbgecko(void); | 55 | extern void __init udbg_init_usbgecko(void); |
56 | extern void __init udbg_init_wsp(void); | 56 | extern void __init udbg_init_wsp(void); |
57 | extern void __init udbg_init_ehv_bc(void); | ||
58 | extern void __init udbg_init_ps3gelic(void); | ||
59 | extern void __init udbg_init_debug_opal_raw(void); | ||
60 | extern void __init udbg_init_debug_opal_hvsi(void); | ||
57 | 61 | ||
58 | #endif /* __KERNEL__ */ | 62 | #endif /* __KERNEL__ */ |
59 | #endif /* _ASM_POWERPC_UDBG_H */ | 63 | #endif /* _ASM_POWERPC_UDBG_H */ |
diff --git a/arch/powerpc/include/asm/unistd.h b/arch/powerpc/include/asm/unistd.h index b8b3f599362b..d3d1b5efd7eb 100644 --- a/arch/powerpc/include/asm/unistd.h +++ b/arch/powerpc/include/asm/unistd.h | |||
@@ -373,10 +373,12 @@ | |||
373 | #define __NR_syncfs 348 | 373 | #define __NR_syncfs 348 |
374 | #define __NR_sendmmsg 349 | 374 | #define __NR_sendmmsg 349 |
375 | #define __NR_setns 350 | 375 | #define __NR_setns 350 |
376 | #define __NR_process_vm_readv 351 | ||
377 | #define __NR_process_vm_writev 352 | ||
376 | 378 | ||
377 | #ifdef __KERNEL__ | 379 | #ifdef __KERNEL__ |
378 | 380 | ||
379 | #define __NR_syscalls 351 | 381 | #define __NR_syscalls 353 |
380 | 382 | ||
381 | #define __NR__exit __NR_exit | 383 | #define __NR__exit __NR_exit |
382 | #define NR_syscalls __NR_syscalls | 384 | #define NR_syscalls __NR_syscalls |
diff --git a/arch/powerpc/include/asm/xics.h b/arch/powerpc/include/asm/xics.h index b183a4062011..c48de98ba94e 100644 --- a/arch/powerpc/include/asm/xics.h +++ b/arch/powerpc/include/asm/xics.h | |||
@@ -15,8 +15,8 @@ | |||
15 | #define DEFAULT_PRIORITY 5 | 15 | #define DEFAULT_PRIORITY 5 |
16 | 16 | ||
17 | /* | 17 | /* |
18 | * Mark IPIs as higher priority so we can take them inside interrupts that | 18 | * Mark IPIs as higher priority so we can take them inside interrupts |
19 | * arent marked IRQF_DISABLED | 19 | * FIXME: still true now? |
20 | */ | 20 | */ |
21 | #define IPI_PRIORITY 4 | 21 | #define IPI_PRIORITY 4 |
22 | 22 | ||
@@ -27,10 +27,18 @@ | |||
27 | #define MAX_NUM_PRIORITIES 3 | 27 | #define MAX_NUM_PRIORITIES 3 |
28 | 28 | ||
29 | /* Native ICP */ | 29 | /* Native ICP */ |
30 | #ifdef CONFIG_PPC_ICP_NATIVE | ||
30 | extern int icp_native_init(void); | 31 | extern int icp_native_init(void); |
32 | #else | ||
33 | static inline int icp_native_init(void) { return -ENODEV; } | ||
34 | #endif | ||
31 | 35 | ||
32 | /* PAPR ICP */ | 36 | /* PAPR ICP */ |
37 | #ifdef CONFIG_PPC_ICP_HV | ||
33 | extern int icp_hv_init(void); | 38 | extern int icp_hv_init(void); |
39 | #else | ||
40 | static inline int icp_hv_init(void) { return -ENODEV; } | ||
41 | #endif | ||
34 | 42 | ||
35 | /* ICP ops */ | 43 | /* ICP ops */ |
36 | struct icp_ops { | 44 | struct icp_ops { |
@@ -51,7 +59,18 @@ extern const struct icp_ops *icp_ops; | |||
51 | extern int ics_native_init(void); | 59 | extern int ics_native_init(void); |
52 | 60 | ||
53 | /* RTAS ICS */ | 61 | /* RTAS ICS */ |
62 | #ifdef CONFIG_PPC_ICS_RTAS | ||
54 | extern int ics_rtas_init(void); | 63 | extern int ics_rtas_init(void); |
64 | #else | ||
65 | static inline int ics_rtas_init(void) { return -ENODEV; } | ||
66 | #endif | ||
67 | |||
68 | /* HAL ICS */ | ||
69 | #ifdef CONFIG_PPC_POWERNV | ||
70 | extern int ics_opal_init(void); | ||
71 | #else | ||
72 | static inline int ics_opal_init(void) { return -ENODEV; } | ||
73 | #endif | ||
55 | 74 | ||
56 | /* ICS instance, hooked up to chip_data of an irq */ | 75 | /* ICS instance, hooked up to chip_data of an irq */ |
57 | struct ics { | 76 | struct ics { |
diff --git a/arch/powerpc/kernel/asm-offsets.c b/arch/powerpc/kernel/asm-offsets.c index 5f078bc2063e..7c5324f1ec9c 100644 --- a/arch/powerpc/kernel/asm-offsets.c +++ b/arch/powerpc/kernel/asm-offsets.c | |||
@@ -44,10 +44,14 @@ | |||
44 | #include <asm/compat.h> | 44 | #include <asm/compat.h> |
45 | #include <asm/mmu.h> | 45 | #include <asm/mmu.h> |
46 | #include <asm/hvcall.h> | 46 | #include <asm/hvcall.h> |
47 | #include <asm/xics.h> | ||
47 | #endif | 48 | #endif |
48 | #ifdef CONFIG_PPC_ISERIES | 49 | #ifdef CONFIG_PPC_ISERIES |
49 | #include <asm/iseries/alpaca.h> | 50 | #include <asm/iseries/alpaca.h> |
50 | #endif | 51 | #endif |
52 | #ifdef CONFIG_PPC_POWERNV | ||
53 | #include <asm/opal.h> | ||
54 | #endif | ||
51 | #if defined(CONFIG_KVM) || defined(CONFIG_KVM_GUEST) | 55 | #if defined(CONFIG_KVM) || defined(CONFIG_KVM_GUEST) |
52 | #include <linux/kvm_host.h> | 56 | #include <linux/kvm_host.h> |
53 | #endif | 57 | #endif |
@@ -449,8 +453,6 @@ int main(void) | |||
449 | #ifdef CONFIG_PPC_BOOK3S | 453 | #ifdef CONFIG_PPC_BOOK3S |
450 | DEFINE(VCPU_KVM, offsetof(struct kvm_vcpu, kvm)); | 454 | DEFINE(VCPU_KVM, offsetof(struct kvm_vcpu, kvm)); |
451 | DEFINE(VCPU_VCPUID, offsetof(struct kvm_vcpu, vcpu_id)); | 455 | DEFINE(VCPU_VCPUID, offsetof(struct kvm_vcpu, vcpu_id)); |
452 | DEFINE(VCPU_HOST_RETIP, offsetof(struct kvm_vcpu, arch.host_retip)); | ||
453 | DEFINE(VCPU_HOST_MSR, offsetof(struct kvm_vcpu, arch.host_msr)); | ||
454 | DEFINE(VCPU_PURR, offsetof(struct kvm_vcpu, arch.purr)); | 456 | DEFINE(VCPU_PURR, offsetof(struct kvm_vcpu, arch.purr)); |
455 | DEFINE(VCPU_SPURR, offsetof(struct kvm_vcpu, arch.spurr)); | 457 | DEFINE(VCPU_SPURR, offsetof(struct kvm_vcpu, arch.spurr)); |
456 | DEFINE(VCPU_DSCR, offsetof(struct kvm_vcpu, arch.dscr)); | 458 | DEFINE(VCPU_DSCR, offsetof(struct kvm_vcpu, arch.dscr)); |
@@ -458,14 +460,12 @@ int main(void) | |||
458 | DEFINE(VCPU_UAMOR, offsetof(struct kvm_vcpu, arch.uamor)); | 460 | DEFINE(VCPU_UAMOR, offsetof(struct kvm_vcpu, arch.uamor)); |
459 | DEFINE(VCPU_CTRL, offsetof(struct kvm_vcpu, arch.ctrl)); | 461 | DEFINE(VCPU_CTRL, offsetof(struct kvm_vcpu, arch.ctrl)); |
460 | DEFINE(VCPU_DABR, offsetof(struct kvm_vcpu, arch.dabr)); | 462 | DEFINE(VCPU_DABR, offsetof(struct kvm_vcpu, arch.dabr)); |
461 | DEFINE(VCPU_TRAMPOLINE_LOWMEM, offsetof(struct kvm_vcpu, arch.trampoline_lowmem)); | ||
462 | DEFINE(VCPU_TRAMPOLINE_ENTER, offsetof(struct kvm_vcpu, arch.trampoline_enter)); | ||
463 | DEFINE(VCPU_HIGHMEM_HANDLER, offsetof(struct kvm_vcpu, arch.highmem_handler)); | ||
464 | DEFINE(VCPU_RMCALL, offsetof(struct kvm_vcpu, arch.rmcall)); | ||
465 | DEFINE(VCPU_HFLAGS, offsetof(struct kvm_vcpu, arch.hflags)); | 463 | DEFINE(VCPU_HFLAGS, offsetof(struct kvm_vcpu, arch.hflags)); |
466 | DEFINE(VCPU_DEC, offsetof(struct kvm_vcpu, arch.dec)); | 464 | DEFINE(VCPU_DEC, offsetof(struct kvm_vcpu, arch.dec)); |
467 | DEFINE(VCPU_DEC_EXPIRES, offsetof(struct kvm_vcpu, arch.dec_expires)); | 465 | DEFINE(VCPU_DEC_EXPIRES, offsetof(struct kvm_vcpu, arch.dec_expires)); |
468 | DEFINE(VCPU_PENDING_EXC, offsetof(struct kvm_vcpu, arch.pending_exceptions)); | 466 | DEFINE(VCPU_PENDING_EXC, offsetof(struct kvm_vcpu, arch.pending_exceptions)); |
467 | DEFINE(VCPU_CEDED, offsetof(struct kvm_vcpu, arch.ceded)); | ||
468 | DEFINE(VCPU_PRODDED, offsetof(struct kvm_vcpu, arch.prodded)); | ||
469 | DEFINE(VCPU_VPA, offsetof(struct kvm_vcpu, arch.vpa)); | 469 | DEFINE(VCPU_VPA, offsetof(struct kvm_vcpu, arch.vpa)); |
470 | DEFINE(VCPU_MMCR, offsetof(struct kvm_vcpu, arch.mmcr)); | 470 | DEFINE(VCPU_MMCR, offsetof(struct kvm_vcpu, arch.mmcr)); |
471 | DEFINE(VCPU_PMC, offsetof(struct kvm_vcpu, arch.pmc)); | 471 | DEFINE(VCPU_PMC, offsetof(struct kvm_vcpu, arch.pmc)); |
@@ -481,6 +481,7 @@ int main(void) | |||
481 | DEFINE(VCORE_ENTRY_EXIT, offsetof(struct kvmppc_vcore, entry_exit_count)); | 481 | DEFINE(VCORE_ENTRY_EXIT, offsetof(struct kvmppc_vcore, entry_exit_count)); |
482 | DEFINE(VCORE_NAP_COUNT, offsetof(struct kvmppc_vcore, nap_count)); | 482 | DEFINE(VCORE_NAP_COUNT, offsetof(struct kvmppc_vcore, nap_count)); |
483 | DEFINE(VCORE_IN_GUEST, offsetof(struct kvmppc_vcore, in_guest)); | 483 | DEFINE(VCORE_IN_GUEST, offsetof(struct kvmppc_vcore, in_guest)); |
484 | DEFINE(VCORE_NAPPING_THREADS, offsetof(struct kvmppc_vcore, napping_threads)); | ||
484 | DEFINE(VCPU_SVCPU, offsetof(struct kvmppc_vcpu_book3s, shadow_vcpu) - | 485 | DEFINE(VCPU_SVCPU, offsetof(struct kvmppc_vcpu_book3s, shadow_vcpu) - |
485 | offsetof(struct kvmppc_vcpu_book3s, vcpu)); | 486 | offsetof(struct kvmppc_vcpu_book3s, vcpu)); |
486 | DEFINE(VCPU_SLB_E, offsetof(struct kvmppc_slb, orige)); | 487 | DEFINE(VCPU_SLB_E, offsetof(struct kvmppc_slb, orige)); |
@@ -537,6 +538,8 @@ int main(void) | |||
537 | HSTATE_FIELD(HSTATE_SCRATCH0, scratch0); | 538 | HSTATE_FIELD(HSTATE_SCRATCH0, scratch0); |
538 | HSTATE_FIELD(HSTATE_SCRATCH1, scratch1); | 539 | HSTATE_FIELD(HSTATE_SCRATCH1, scratch1); |
539 | HSTATE_FIELD(HSTATE_IN_GUEST, in_guest); | 540 | HSTATE_FIELD(HSTATE_IN_GUEST, in_guest); |
541 | HSTATE_FIELD(HSTATE_RESTORE_HID5, restore_hid5); | ||
542 | HSTATE_FIELD(HSTATE_NAPPING, napping); | ||
540 | 543 | ||
541 | #ifdef CONFIG_KVM_BOOK3S_64_HV | 544 | #ifdef CONFIG_KVM_BOOK3S_64_HV |
542 | HSTATE_FIELD(HSTATE_KVM_VCPU, kvm_vcpu); | 545 | HSTATE_FIELD(HSTATE_KVM_VCPU, kvm_vcpu); |
@@ -549,6 +552,7 @@ int main(void) | |||
549 | HSTATE_FIELD(HSTATE_DSCR, host_dscr); | 552 | HSTATE_FIELD(HSTATE_DSCR, host_dscr); |
550 | HSTATE_FIELD(HSTATE_DABR, dabr); | 553 | HSTATE_FIELD(HSTATE_DABR, dabr); |
551 | HSTATE_FIELD(HSTATE_DECEXP, dec_expires); | 554 | HSTATE_FIELD(HSTATE_DECEXP, dec_expires); |
555 | DEFINE(IPI_PRIORITY, IPI_PRIORITY); | ||
552 | #endif /* CONFIG_KVM_BOOK3S_64_HV */ | 556 | #endif /* CONFIG_KVM_BOOK3S_64_HV */ |
553 | 557 | ||
554 | #else /* CONFIG_PPC_BOOK3S */ | 558 | #else /* CONFIG_PPC_BOOK3S */ |
@@ -609,5 +613,12 @@ int main(void) | |||
609 | arch.timing_last_enter.tv32.tbl)); | 613 | arch.timing_last_enter.tv32.tbl)); |
610 | #endif | 614 | #endif |
611 | 615 | ||
616 | #ifdef CONFIG_PPC_POWERNV | ||
617 | DEFINE(OPAL_MC_GPR3, offsetof(struct opal_machine_check_event, gpr3)); | ||
618 | DEFINE(OPAL_MC_SRR0, offsetof(struct opal_machine_check_event, srr0)); | ||
619 | DEFINE(OPAL_MC_SRR1, offsetof(struct opal_machine_check_event, srr1)); | ||
620 | DEFINE(PACA_OPAL_MC_EVT, offsetof(struct paca_struct, opal_mc_evt)); | ||
621 | #endif | ||
622 | |||
612 | return 0; | 623 | return 0; |
613 | } | 624 | } |
diff --git a/arch/powerpc/kernel/btext.c b/arch/powerpc/kernel/btext.c index 60b3e377b1e4..ac8f52732fde 100644 --- a/arch/powerpc/kernel/btext.c +++ b/arch/powerpc/kernel/btext.c | |||
@@ -6,7 +6,7 @@ | |||
6 | #include <linux/kernel.h> | 6 | #include <linux/kernel.h> |
7 | #include <linux/string.h> | 7 | #include <linux/string.h> |
8 | #include <linux/init.h> | 8 | #include <linux/init.h> |
9 | #include <linux/module.h> | 9 | #include <linux/export.h> |
10 | #include <linux/memblock.h> | 10 | #include <linux/memblock.h> |
11 | 11 | ||
12 | #include <asm/sections.h> | 12 | #include <asm/sections.h> |
diff --git a/arch/powerpc/kernel/clock.c b/arch/powerpc/kernel/clock.c index ce668f545758..a764b47791e8 100644 --- a/arch/powerpc/kernel/clock.c +++ b/arch/powerpc/kernel/clock.c | |||
@@ -6,7 +6,7 @@ | |||
6 | #include <linux/clk.h> | 6 | #include <linux/clk.h> |
7 | #include <linux/err.h> | 7 | #include <linux/err.h> |
8 | #include <linux/errno.h> | 8 | #include <linux/errno.h> |
9 | #include <linux/module.h> | 9 | #include <linux/export.h> |
10 | #include <asm/clk_interface.h> | 10 | #include <asm/clk_interface.h> |
11 | 11 | ||
12 | struct clk_interface clk_functions; | 12 | struct clk_interface clk_functions; |
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index fa44ff538861..edae5bb06f1f 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
@@ -14,7 +14,7 @@ | |||
14 | #include <linux/sched.h> | 14 | #include <linux/sched.h> |
15 | #include <linux/threads.h> | 15 | #include <linux/threads.h> |
16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
17 | #include <linux/module.h> | 17 | #include <linux/export.h> |
18 | 18 | ||
19 | #include <asm/oprofile_impl.h> | 19 | #include <asm/oprofile_impl.h> |
20 | #include <asm/cputable.h> | 20 | #include <asm/cputable.h> |
diff --git a/arch/powerpc/kernel/crash.c b/arch/powerpc/kernel/crash.c index cc6a9d5d69ab..d879809d5c45 100644 --- a/arch/powerpc/kernel/crash.c +++ b/arch/powerpc/kernel/crash.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/reboot.h> | 17 | #include <linux/reboot.h> |
18 | #include <linux/kexec.h> | 18 | #include <linux/kexec.h> |
19 | #include <linux/bootmem.h> | 19 | #include <linux/bootmem.h> |
20 | #include <linux/export.h> | ||
20 | #include <linux/crash_dump.h> | 21 | #include <linux/crash_dump.h> |
21 | #include <linux/delay.h> | 22 | #include <linux/delay.h> |
22 | #include <linux/elf.h> | 23 | #include <linux/elf.h> |
diff --git a/arch/powerpc/kernel/dma-iommu.c b/arch/powerpc/kernel/dma-iommu.c index e7554154a6de..3f6464b4d970 100644 --- a/arch/powerpc/kernel/dma-iommu.c +++ b/arch/powerpc/kernel/dma-iommu.c | |||
@@ -5,6 +5,7 @@ | |||
5 | * busses using the iommu infrastructure | 5 | * busses using the iommu infrastructure |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include <linux/export.h> | ||
8 | #include <asm/iommu.h> | 9 | #include <asm/iommu.h> |
9 | 10 | ||
10 | /* | 11 | /* |
@@ -90,13 +91,27 @@ static int dma_iommu_dma_supported(struct device *dev, u64 mask) | |||
90 | return 1; | 91 | return 1; |
91 | } | 92 | } |
92 | 93 | ||
94 | static u64 dma_iommu_get_required_mask(struct device *dev) | ||
95 | { | ||
96 | struct iommu_table *tbl = get_iommu_table_base(dev); | ||
97 | u64 mask; | ||
98 | if (!tbl) | ||
99 | return 0; | ||
100 | |||
101 | mask = 1ULL < (fls_long(tbl->it_offset + tbl->it_size) - 1); | ||
102 | mask += mask - 1; | ||
103 | |||
104 | return mask; | ||
105 | } | ||
106 | |||
93 | struct dma_map_ops dma_iommu_ops = { | 107 | struct dma_map_ops dma_iommu_ops = { |
94 | .alloc_coherent = dma_iommu_alloc_coherent, | 108 | .alloc_coherent = dma_iommu_alloc_coherent, |
95 | .free_coherent = dma_iommu_free_coherent, | 109 | .free_coherent = dma_iommu_free_coherent, |
96 | .map_sg = dma_iommu_map_sg, | 110 | .map_sg = dma_iommu_map_sg, |
97 | .unmap_sg = dma_iommu_unmap_sg, | 111 | .unmap_sg = dma_iommu_unmap_sg, |
98 | .dma_supported = dma_iommu_dma_supported, | 112 | .dma_supported = dma_iommu_dma_supported, |
99 | .map_page = dma_iommu_map_page, | 113 | .map_page = dma_iommu_map_page, |
100 | .unmap_page = dma_iommu_unmap_page, | 114 | .unmap_page = dma_iommu_unmap_page, |
115 | .get_required_mask = dma_iommu_get_required_mask, | ||
101 | }; | 116 | }; |
102 | EXPORT_SYMBOL(dma_iommu_ops); | 117 | EXPORT_SYMBOL(dma_iommu_ops); |
diff --git a/arch/powerpc/kernel/dma-swiotlb.c b/arch/powerpc/kernel/dma-swiotlb.c index 4295e0b94b2d..1ebc9189aada 100644 --- a/arch/powerpc/kernel/dma-swiotlb.c +++ b/arch/powerpc/kernel/dma-swiotlb.c | |||
@@ -24,6 +24,21 @@ | |||
24 | 24 | ||
25 | unsigned int ppc_swiotlb_enable; | 25 | unsigned int ppc_swiotlb_enable; |
26 | 26 | ||
27 | static u64 swiotlb_powerpc_get_required(struct device *dev) | ||
28 | { | ||
29 | u64 end, mask, max_direct_dma_addr = dev->archdata.max_direct_dma_addr; | ||
30 | |||
31 | end = memblock_end_of_DRAM(); | ||
32 | if (max_direct_dma_addr && end > max_direct_dma_addr) | ||
33 | end = max_direct_dma_addr; | ||
34 | end += get_dma_offset(dev); | ||
35 | |||
36 | mask = 1ULL << (fls64(end) - 1); | ||
37 | mask += mask - 1; | ||
38 | |||
39 | return mask; | ||
40 | } | ||
41 | |||
27 | /* | 42 | /* |
28 | * At the moment, all platforms that use this code only require | 43 | * At the moment, all platforms that use this code only require |
29 | * swiotlb to be used if we're operating on HIGHMEM. Since | 44 | * swiotlb to be used if we're operating on HIGHMEM. Since |
@@ -44,6 +59,7 @@ struct dma_map_ops swiotlb_dma_ops = { | |||
44 | .sync_sg_for_cpu = swiotlb_sync_sg_for_cpu, | 59 | .sync_sg_for_cpu = swiotlb_sync_sg_for_cpu, |
45 | .sync_sg_for_device = swiotlb_sync_sg_for_device, | 60 | .sync_sg_for_device = swiotlb_sync_sg_for_device, |
46 | .mapping_error = swiotlb_dma_mapping_error, | 61 | .mapping_error = swiotlb_dma_mapping_error, |
62 | .get_required_mask = swiotlb_powerpc_get_required, | ||
47 | }; | 63 | }; |
48 | 64 | ||
49 | void pci_dma_dev_setup_swiotlb(struct pci_dev *pdev) | 65 | void pci_dma_dev_setup_swiotlb(struct pci_dev *pdev) |
diff --git a/arch/powerpc/kernel/dma.c b/arch/powerpc/kernel/dma.c index 4f0959fbfbee..7d0233c12ee3 100644 --- a/arch/powerpc/kernel/dma.c +++ b/arch/powerpc/kernel/dma.c | |||
@@ -10,6 +10,7 @@ | |||
10 | #include <linux/dma-debug.h> | 10 | #include <linux/dma-debug.h> |
11 | #include <linux/gfp.h> | 11 | #include <linux/gfp.h> |
12 | #include <linux/memblock.h> | 12 | #include <linux/memblock.h> |
13 | #include <linux/export.h> | ||
13 | #include <asm/bug.h> | 14 | #include <asm/bug.h> |
14 | #include <asm/abs_addr.h> | 15 | #include <asm/abs_addr.h> |
15 | #include <asm/machdep.h> | 16 | #include <asm/machdep.h> |
@@ -96,6 +97,18 @@ static int dma_direct_dma_supported(struct device *dev, u64 mask) | |||
96 | #endif | 97 | #endif |
97 | } | 98 | } |
98 | 99 | ||
100 | static u64 dma_direct_get_required_mask(struct device *dev) | ||
101 | { | ||
102 | u64 end, mask; | ||
103 | |||
104 | end = memblock_end_of_DRAM() + get_dma_offset(dev); | ||
105 | |||
106 | mask = 1ULL << (fls64(end) - 1); | ||
107 | mask += mask - 1; | ||
108 | |||
109 | return mask; | ||
110 | } | ||
111 | |||
99 | static inline dma_addr_t dma_direct_map_page(struct device *dev, | 112 | static inline dma_addr_t dma_direct_map_page(struct device *dev, |
100 | struct page *page, | 113 | struct page *page, |
101 | unsigned long offset, | 114 | unsigned long offset, |
@@ -137,13 +150,14 @@ static inline void dma_direct_sync_single(struct device *dev, | |||
137 | #endif | 150 | #endif |
138 | 151 | ||
139 | struct dma_map_ops dma_direct_ops = { | 152 | struct dma_map_ops dma_direct_ops = { |
140 | .alloc_coherent = dma_direct_alloc_coherent, | 153 | .alloc_coherent = dma_direct_alloc_coherent, |
141 | .free_coherent = dma_direct_free_coherent, | 154 | .free_coherent = dma_direct_free_coherent, |
142 | .map_sg = dma_direct_map_sg, | 155 | .map_sg = dma_direct_map_sg, |
143 | .unmap_sg = dma_direct_unmap_sg, | 156 | .unmap_sg = dma_direct_unmap_sg, |
144 | .dma_supported = dma_direct_dma_supported, | 157 | .dma_supported = dma_direct_dma_supported, |
145 | .map_page = dma_direct_map_page, | 158 | .map_page = dma_direct_map_page, |
146 | .unmap_page = dma_direct_unmap_page, | 159 | .unmap_page = dma_direct_unmap_page, |
160 | .get_required_mask = dma_direct_get_required_mask, | ||
147 | #ifdef CONFIG_NOT_COHERENT_CACHE | 161 | #ifdef CONFIG_NOT_COHERENT_CACHE |
148 | .sync_single_for_cpu = dma_direct_sync_single, | 162 | .sync_single_for_cpu = dma_direct_sync_single, |
149 | .sync_single_for_device = dma_direct_sync_single, | 163 | .sync_single_for_device = dma_direct_sync_single, |
@@ -170,6 +184,23 @@ int dma_set_mask(struct device *dev, u64 dma_mask) | |||
170 | } | 184 | } |
171 | EXPORT_SYMBOL(dma_set_mask); | 185 | EXPORT_SYMBOL(dma_set_mask); |
172 | 186 | ||
187 | u64 dma_get_required_mask(struct device *dev) | ||
188 | { | ||
189 | struct dma_map_ops *dma_ops = get_dma_ops(dev); | ||
190 | |||
191 | if (ppc_md.dma_get_required_mask) | ||
192 | return ppc_md.dma_get_required_mask(dev); | ||
193 | |||
194 | if (unlikely(dma_ops == NULL)) | ||
195 | return 0; | ||
196 | |||
197 | if (dma_ops->get_required_mask) | ||
198 | return dma_ops->get_required_mask(dev); | ||
199 | |||
200 | return DMA_BIT_MASK(8 * sizeof(dma_addr_t)); | ||
201 | } | ||
202 | EXPORT_SYMBOL_GPL(dma_get_required_mask); | ||
203 | |||
173 | static int __init dma_init(void) | 204 | static int __init dma_init(void) |
174 | { | 205 | { |
175 | dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES); | 206 | dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES); |
diff --git a/arch/powerpc/kernel/exceptions-64s.S b/arch/powerpc/kernel/exceptions-64s.S index 41b02c792aa3..cf9c69b9189c 100644 --- a/arch/powerpc/kernel/exceptions-64s.S +++ b/arch/powerpc/kernel/exceptions-64s.S | |||
@@ -267,7 +267,7 @@ vsx_unavailable_pSeries_1: | |||
267 | 267 | ||
268 | #ifdef CONFIG_CBE_RAS | 268 | #ifdef CONFIG_CBE_RAS |
269 | STD_EXCEPTION_HV(0x1200, 0x1202, cbe_system_error) | 269 | STD_EXCEPTION_HV(0x1200, 0x1202, cbe_system_error) |
270 | KVM_HANDLER_PR_SKIP(PACA_EXGEN, EXC_HV, 0x1202) | 270 | KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0x1202) |
271 | #endif /* CONFIG_CBE_RAS */ | 271 | #endif /* CONFIG_CBE_RAS */ |
272 | 272 | ||
273 | STD_EXCEPTION_PSERIES(0x1300, 0x1300, instruction_breakpoint) | 273 | STD_EXCEPTION_PSERIES(0x1300, 0x1300, instruction_breakpoint) |
@@ -275,7 +275,7 @@ vsx_unavailable_pSeries_1: | |||
275 | 275 | ||
276 | #ifdef CONFIG_CBE_RAS | 276 | #ifdef CONFIG_CBE_RAS |
277 | STD_EXCEPTION_HV(0x1600, 0x1602, cbe_maintenance) | 277 | STD_EXCEPTION_HV(0x1600, 0x1602, cbe_maintenance) |
278 | KVM_HANDLER_PR_SKIP(PACA_EXGEN, EXC_HV, 0x1602) | 278 | KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0x1602) |
279 | #endif /* CONFIG_CBE_RAS */ | 279 | #endif /* CONFIG_CBE_RAS */ |
280 | 280 | ||
281 | STD_EXCEPTION_PSERIES(0x1700, 0x1700, altivec_assist) | 281 | STD_EXCEPTION_PSERIES(0x1700, 0x1700, altivec_assist) |
@@ -283,7 +283,7 @@ vsx_unavailable_pSeries_1: | |||
283 | 283 | ||
284 | #ifdef CONFIG_CBE_RAS | 284 | #ifdef CONFIG_CBE_RAS |
285 | STD_EXCEPTION_HV(0x1800, 0x1802, cbe_thermal) | 285 | STD_EXCEPTION_HV(0x1800, 0x1802, cbe_thermal) |
286 | KVM_HANDLER_PR_SKIP(PACA_EXGEN, EXC_HV, 0x1802) | 286 | KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0x1802) |
287 | #endif /* CONFIG_CBE_RAS */ | 287 | #endif /* CONFIG_CBE_RAS */ |
288 | 288 | ||
289 | . = 0x3000 | 289 | . = 0x3000 |
@@ -427,16 +427,6 @@ slb_miss_user_pseries: | |||
427 | b . /* prevent spec. execution */ | 427 | b . /* prevent spec. execution */ |
428 | #endif /* __DISABLED__ */ | 428 | #endif /* __DISABLED__ */ |
429 | 429 | ||
430 | /* KVM's trampoline code needs to be close to the interrupt handlers */ | ||
431 | |||
432 | #ifdef CONFIG_KVM_BOOK3S_64_HANDLER | ||
433 | #ifdef CONFIG_KVM_BOOK3S_PR | ||
434 | #include "../kvm/book3s_rmhandlers.S" | ||
435 | #else | ||
436 | #include "../kvm/book3s_hv_rmhandlers.S" | ||
437 | #endif | ||
438 | #endif | ||
439 | |||
440 | .align 7 | 430 | .align 7 |
441 | .globl __end_interrupts | 431 | .globl __end_interrupts |
442 | __end_interrupts: | 432 | __end_interrupts: |
@@ -1143,7 +1133,7 @@ _GLOBAL(do_stab_bolted) | |||
1143 | rfid | 1133 | rfid |
1144 | b . /* prevent speculative execution */ | 1134 | b . /* prevent speculative execution */ |
1145 | 1135 | ||
1146 | #ifdef CONFIG_PPC_PSERIES | 1136 | #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) |
1147 | /* | 1137 | /* |
1148 | * Data area reserved for FWNMI option. | 1138 | * Data area reserved for FWNMI option. |
1149 | * This address (0x7000) is fixed by the RPA. | 1139 | * This address (0x7000) is fixed by the RPA. |
@@ -1151,7 +1141,7 @@ _GLOBAL(do_stab_bolted) | |||
1151 | .= 0x7000 | 1141 | .= 0x7000 |
1152 | .globl fwnmi_data_area | 1142 | .globl fwnmi_data_area |
1153 | fwnmi_data_area: | 1143 | fwnmi_data_area: |
1154 | #endif /* CONFIG_PPC_PSERIES */ | 1144 | #endif /* defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) */ |
1155 | 1145 | ||
1156 | /* iSeries does not use the FWNMI stuff, so it is safe to put | 1146 | /* iSeries does not use the FWNMI stuff, so it is safe to put |
1157 | * this here, even if we later allow kernels that will boot on | 1147 | * this here, even if we later allow kernels that will boot on |
@@ -1176,9 +1166,12 @@ xLparMap: | |||
1176 | 1166 | ||
1177 | #endif /* CONFIG_PPC_ISERIES */ | 1167 | #endif /* CONFIG_PPC_ISERIES */ |
1178 | 1168 | ||
1179 | #ifdef CONFIG_PPC_PSERIES | 1169 | #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) |
1170 | /* pseries and powernv need to keep the whole page from | ||
1171 | * 0x7000 to 0x8000 free for use by the firmware | ||
1172 | */ | ||
1180 | . = 0x8000 | 1173 | . = 0x8000 |
1181 | #endif /* CONFIG_PPC_PSERIES */ | 1174 | #endif /* defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) */ |
1182 | 1175 | ||
1183 | /* | 1176 | /* |
1184 | * Space for CPU0's segment table. | 1177 | * Space for CPU0's segment table. |
@@ -1193,3 +1186,19 @@ xLparMap: | |||
1193 | .globl initial_stab | 1186 | .globl initial_stab |
1194 | initial_stab: | 1187 | initial_stab: |
1195 | .space 4096 | 1188 | .space 4096 |
1189 | #ifdef CONFIG_PPC_POWERNV | ||
1190 | _GLOBAL(opal_mc_secondary_handler) | ||
1191 | HMT_MEDIUM | ||
1192 | SET_SCRATCH0(r13) | ||
1193 | GET_PACA(r13) | ||
1194 | clrldi r3,r3,2 | ||
1195 | tovirt(r3,r3) | ||
1196 | std r3,PACA_OPAL_MC_EVT(r13) | ||
1197 | ld r13,OPAL_MC_SRR0(r3) | ||
1198 | mtspr SPRN_SRR0,r13 | ||
1199 | ld r13,OPAL_MC_SRR1(r3) | ||
1200 | mtspr SPRN_SRR1,r13 | ||
1201 | ld r3,OPAL_MC_GPR3(r3) | ||
1202 | GET_SCRATCH0(r13) | ||
1203 | b machine_check_pSeries | ||
1204 | #endif /* CONFIG_PPC_POWERNV */ | ||
diff --git a/arch/powerpc/kernel/firmware.c b/arch/powerpc/kernel/firmware.c index 6b1f4271eb53..2eae4478f7a1 100644 --- a/arch/powerpc/kernel/firmware.c +++ b/arch/powerpc/kernel/firmware.c | |||
@@ -13,7 +13,8 @@ | |||
13 | * 2 of the License, or (at your option) any later version. | 13 | * 2 of the License, or (at your option) any later version. |
14 | */ | 14 | */ |
15 | 15 | ||
16 | #include <linux/module.h> | 16 | #include <linux/export.h> |
17 | #include <linux/cache.h> | ||
17 | 18 | ||
18 | #include <asm/firmware.h> | 19 | #include <asm/firmware.h> |
19 | 20 | ||
diff --git a/arch/powerpc/kernel/head_32.S b/arch/powerpc/kernel/head_32.S index ba250d505e07..0654dba2c1f1 100644 --- a/arch/powerpc/kernel/head_32.S +++ b/arch/powerpc/kernel/head_32.S | |||
@@ -139,8 +139,7 @@ __start: | |||
139 | trap | 139 | trap |
140 | #endif /* CONFIG_PPC_PMAC */ | 140 | #endif /* CONFIG_PPC_PMAC */ |
141 | 141 | ||
142 | 1: mr r31,r3 /* save parameters */ | 142 | 1: mr r31,r3 /* save device tree ptr */ |
143 | mr r30,r4 | ||
144 | li r24,0 /* cpu # */ | 143 | li r24,0 /* cpu # */ |
145 | 144 | ||
146 | /* | 145 | /* |
@@ -964,8 +963,8 @@ start_here: | |||
964 | * Do early platform-specific initialization, | 963 | * Do early platform-specific initialization, |
965 | * and set up the MMU. | 964 | * and set up the MMU. |
966 | */ | 965 | */ |
967 | mr r3,r31 | 966 | li r3,0 |
968 | mr r4,r30 | 967 | mr r4,r31 |
969 | bl machine_init | 968 | bl machine_init |
970 | bl __save_cpu_setup | 969 | bl __save_cpu_setup |
971 | bl MMU_init | 970 | bl MMU_init |
diff --git a/arch/powerpc/kernel/head_40x.S b/arch/powerpc/kernel/head_40x.S index a91626d87fc9..872a6af83bad 100644 --- a/arch/powerpc/kernel/head_40x.S +++ b/arch/powerpc/kernel/head_40x.S | |||
@@ -58,13 +58,7 @@ | |||
58 | _ENTRY(_stext); | 58 | _ENTRY(_stext); |
59 | _ENTRY(_start); | 59 | _ENTRY(_start); |
60 | 60 | ||
61 | /* Save parameters we are passed. | 61 | mr r31,r3 /* save device tree ptr */ |
62 | */ | ||
63 | mr r31,r3 | ||
64 | mr r30,r4 | ||
65 | mr r29,r5 | ||
66 | mr r28,r6 | ||
67 | mr r27,r7 | ||
68 | 62 | ||
69 | /* We have to turn on the MMU right away so we get cache modes | 63 | /* We have to turn on the MMU right away so we get cache modes |
70 | * set correctly. | 64 | * set correctly. |
@@ -849,11 +843,8 @@ start_here: | |||
849 | /* | 843 | /* |
850 | * Decide what sort of machine this is and initialize the MMU. | 844 | * Decide what sort of machine this is and initialize the MMU. |
851 | */ | 845 | */ |
852 | mr r3,r31 | 846 | li r3,0 |
853 | mr r4,r30 | 847 | mr r4,r31 |
854 | mr r5,r29 | ||
855 | mr r6,r28 | ||
856 | mr r7,r27 | ||
857 | bl machine_init | 848 | bl machine_init |
858 | bl MMU_init | 849 | bl MMU_init |
859 | 850 | ||
diff --git a/arch/powerpc/kernel/head_44x.S b/arch/powerpc/kernel/head_44x.S index f8e971ba94f5..b725dab0f88a 100644 --- a/arch/powerpc/kernel/head_44x.S +++ b/arch/powerpc/kernel/head_44x.S | |||
@@ -61,14 +61,7 @@ _ENTRY(_start); | |||
61 | * of abatron_pteptrs | 61 | * of abatron_pteptrs |
62 | */ | 62 | */ |
63 | nop | 63 | nop |
64 | /* | 64 | mr r31,r3 /* save device tree ptr */ |
65 | * Save parameters we are passed | ||
66 | */ | ||
67 | mr r31,r3 | ||
68 | mr r30,r4 | ||
69 | mr r29,r5 | ||
70 | mr r28,r6 | ||
71 | mr r27,r7 | ||
72 | li r24,0 /* CPU number */ | 65 | li r24,0 /* CPU number */ |
73 | 66 | ||
74 | bl init_cpu_state | 67 | bl init_cpu_state |
@@ -120,11 +113,8 @@ _ENTRY(_start); | |||
120 | /* | 113 | /* |
121 | * Decide what sort of machine this is and initialize the MMU. | 114 | * Decide what sort of machine this is and initialize the MMU. |
122 | */ | 115 | */ |
123 | mr r3,r31 | 116 | li r3,0 |
124 | mr r4,r30 | 117 | mr r4,r31 |
125 | mr r5,r29 | ||
126 | mr r6,r28 | ||
127 | mr r7,r27 | ||
128 | bl machine_init | 118 | bl machine_init |
129 | bl MMU_init | 119 | bl MMU_init |
130 | 120 | ||
diff --git a/arch/powerpc/kernel/head_64.S b/arch/powerpc/kernel/head_64.S index 3564c49c683e..06c7251c1bf7 100644 --- a/arch/powerpc/kernel/head_64.S +++ b/arch/powerpc/kernel/head_64.S | |||
@@ -51,6 +51,11 @@ | |||
51 | * For pSeries or server processors: | 51 | * For pSeries or server processors: |
52 | * 1. The MMU is off & open firmware is running in real mode. | 52 | * 1. The MMU is off & open firmware is running in real mode. |
53 | * 2. The kernel is entered at __start | 53 | * 2. The kernel is entered at __start |
54 | * -or- For OPAL entry: | ||
55 | * 1. The MMU is off, processor in HV mode, primary CPU enters at 0 | ||
56 | * with device-tree in gpr3. We also get OPAL base in r8 and | ||
57 | * entry in r9 for debugging purposes | ||
58 | * 2. Secondary processors enter at 0x60 with PIR in gpr3 | ||
54 | * | 59 | * |
55 | * For iSeries: | 60 | * For iSeries: |
56 | * 1. The MMU is on (as it always is for iSeries) | 61 | * 1. The MMU is on (as it always is for iSeries) |
@@ -331,6 +336,11 @@ _GLOBAL(__start_initialization_multiplatform) | |||
331 | /* Save parameters */ | 336 | /* Save parameters */ |
332 | mr r31,r3 | 337 | mr r31,r3 |
333 | mr r30,r4 | 338 | mr r30,r4 |
339 | #ifdef CONFIG_PPC_EARLY_DEBUG_OPAL | ||
340 | /* Save OPAL entry */ | ||
341 | mr r28,r8 | ||
342 | mr r29,r9 | ||
343 | #endif | ||
334 | 344 | ||
335 | #ifdef CONFIG_PPC_BOOK3E | 345 | #ifdef CONFIG_PPC_BOOK3E |
336 | bl .start_initialization_book3e | 346 | bl .start_initialization_book3e |
@@ -674,9 +684,9 @@ _GLOBAL(enable_64b_mode) | |||
674 | _GLOBAL(relative_toc) | 684 | _GLOBAL(relative_toc) |
675 | mflr r0 | 685 | mflr r0 |
676 | bcl 20,31,$+4 | 686 | bcl 20,31,$+4 |
677 | 0: mflr r9 | 687 | 0: mflr r11 |
678 | ld r2,(p_toc - 0b)(r9) | 688 | ld r2,(p_toc - 0b)(r11) |
679 | add r2,r2,r9 | 689 | add r2,r2,r11 |
680 | mtlr r0 | 690 | mtlr r0 |
681 | blr | 691 | blr |
682 | 692 | ||
@@ -707,6 +717,12 @@ _INIT_STATIC(start_here_multiplatform) | |||
707 | bdnz 3b | 717 | bdnz 3b |
708 | 4: | 718 | 4: |
709 | 719 | ||
720 | #ifdef CONFIG_PPC_EARLY_DEBUG_OPAL | ||
721 | /* Setup OPAL entry */ | ||
722 | std r28,0(r11); | ||
723 | std r29,8(r11); | ||
724 | #endif | ||
725 | |||
710 | #ifndef CONFIG_PPC_BOOK3E | 726 | #ifndef CONFIG_PPC_BOOK3E |
711 | mfmsr r6 | 727 | mfmsr r6 |
712 | ori r6,r6,MSR_RI | 728 | ori r6,r6,MSR_RI |
diff --git a/arch/powerpc/kernel/head_8xx.S b/arch/powerpc/kernel/head_8xx.S index 1cbf64e6b416..b68cb173ba2c 100644 --- a/arch/powerpc/kernel/head_8xx.S +++ b/arch/powerpc/kernel/head_8xx.S | |||
@@ -76,11 +76,7 @@ _ENTRY(_start); | |||
76 | */ | 76 | */ |
77 | .globl __start | 77 | .globl __start |
78 | __start: | 78 | __start: |
79 | mr r31,r3 /* save parameters */ | 79 | mr r31,r3 /* save device tree ptr */ |
80 | mr r30,r4 | ||
81 | mr r29,r5 | ||
82 | mr r28,r6 | ||
83 | mr r27,r7 | ||
84 | 80 | ||
85 | /* We have to turn on the MMU right away so we get cache modes | 81 | /* We have to turn on the MMU right away so we get cache modes |
86 | * set correctly. | 82 | * set correctly. |
@@ -723,11 +719,8 @@ start_here: | |||
723 | /* | 719 | /* |
724 | * Decide what sort of machine this is and initialize the MMU. | 720 | * Decide what sort of machine this is and initialize the MMU. |
725 | */ | 721 | */ |
726 | mr r3,r31 | 722 | li r3,0 |
727 | mr r4,r30 | 723 | mr r4,r31 |
728 | mr r5,r29 | ||
729 | mr r6,r28 | ||
730 | mr r7,r27 | ||
731 | bl machine_init | 724 | bl machine_init |
732 | bl MMU_init | 725 | bl MMU_init |
733 | 726 | ||
diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S index 50845924b7d9..9f5d210ddf3f 100644 --- a/arch/powerpc/kernel/head_fsl_booke.S +++ b/arch/powerpc/kernel/head_fsl_booke.S | |||
@@ -63,17 +63,30 @@ _ENTRY(_start); | |||
63 | * of abatron_pteptrs | 63 | * of abatron_pteptrs |
64 | */ | 64 | */ |
65 | nop | 65 | nop |
66 | /* | 66 | |
67 | * Save parameters we are passed | 67 | /* Translate device tree address to physical, save in r30/r31 */ |
68 | */ | 68 | mfmsr r16 |
69 | mr r31,r3 | 69 | mfspr r17,SPRN_PID |
70 | mr r30,r4 | 70 | rlwinm r17,r17,16,0x3fff0000 /* turn PID into MAS6[SPID] */ |
71 | mr r29,r5 | 71 | rlwimi r17,r16,28,0x00000001 /* turn MSR[DS] into MAS6[SAS] */ |
72 | mr r28,r6 | 72 | mtspr SPRN_MAS6,r17 |
73 | mr r27,r7 | 73 | |
74 | li r25,0 /* phys kernel start (low) */ | 74 | tlbsx 0,r3 /* must succeed */ |
75 | li r24,0 /* CPU number */ | 75 | |
76 | li r23,0 /* phys kernel start (high) */ | 76 | mfspr r16,SPRN_MAS1 |
77 | mfspr r20,SPRN_MAS3 | ||
78 | rlwinm r17,r16,25,0x1f /* r17 = log2(page size) */ | ||
79 | li r18,1024 | ||
80 | slw r18,r18,r17 /* r18 = page size */ | ||
81 | addi r18,r18,-1 | ||
82 | and r19,r3,r18 /* r19 = page offset */ | ||
83 | andc r31,r20,r18 /* r31 = page base */ | ||
84 | or r31,r31,r19 /* r31 = devtree phys addr */ | ||
85 | mfspr r30,SPRN_MAS7 | ||
86 | |||
87 | li r25,0 /* phys kernel start (low) */ | ||
88 | li r24,0 /* CPU number */ | ||
89 | li r23,0 /* phys kernel start (high) */ | ||
77 | 90 | ||
78 | /* We try to not make any assumptions about how the boot loader | 91 | /* We try to not make any assumptions about how the boot loader |
79 | * setup or used the TLBs. We invalidate all mappings from the | 92 | * setup or used the TLBs. We invalidate all mappings from the |
@@ -198,11 +211,8 @@ _ENTRY(__early_start) | |||
198 | /* | 211 | /* |
199 | * Decide what sort of machine this is and initialize the MMU. | 212 | * Decide what sort of machine this is and initialize the MMU. |
200 | */ | 213 | */ |
201 | mr r3,r31 | 214 | mr r3,r30 |
202 | mr r4,r30 | 215 | mr r4,r31 |
203 | mr r5,r29 | ||
204 | mr r6,r28 | ||
205 | mr r7,r27 | ||
206 | bl machine_init | 216 | bl machine_init |
207 | bl MMU_init | 217 | bl MMU_init |
208 | 218 | ||
@@ -236,8 +246,24 @@ _ENTRY(__early_start) | |||
236 | * if we find the pte (fall through): | 246 | * if we find the pte (fall through): |
237 | * r11 is low pte word | 247 | * r11 is low pte word |
238 | * r12 is pointer to the pte | 248 | * r12 is pointer to the pte |
249 | * r10 is the pshift from the PGD, if we're a hugepage | ||
239 | */ | 250 | */ |
240 | #ifdef CONFIG_PTE_64BIT | 251 | #ifdef CONFIG_PTE_64BIT |
252 | #ifdef CONFIG_HUGETLB_PAGE | ||
253 | #define FIND_PTE \ | ||
254 | rlwinm r12, r10, 13, 19, 29; /* Compute pgdir/pmd offset */ \ | ||
255 | lwzx r11, r12, r11; /* Get pgd/pmd entry */ \ | ||
256 | rlwinm. r12, r11, 0, 0, 20; /* Extract pt base address */ \ | ||
257 | blt 1000f; /* Normal non-huge page */ \ | ||
258 | beq 2f; /* Bail if no table */ \ | ||
259 | oris r11, r11, PD_HUGE@h; /* Put back address bit */ \ | ||
260 | andi. r10, r11, HUGEPD_SHIFT_MASK@l; /* extract size field */ \ | ||
261 | xor r12, r10, r11; /* drop size bits from pointer */ \ | ||
262 | b 1001f; \ | ||
263 | 1000: rlwimi r12, r10, 23, 20, 28; /* Compute pte address */ \ | ||
264 | li r10, 0; /* clear r10 */ \ | ||
265 | 1001: lwz r11, 4(r12); /* Get pte entry */ | ||
266 | #else | ||
241 | #define FIND_PTE \ | 267 | #define FIND_PTE \ |
242 | rlwinm r12, r10, 13, 19, 29; /* Compute pgdir/pmd offset */ \ | 268 | rlwinm r12, r10, 13, 19, 29; /* Compute pgdir/pmd offset */ \ |
243 | lwzx r11, r12, r11; /* Get pgd/pmd entry */ \ | 269 | lwzx r11, r12, r11; /* Get pgd/pmd entry */ \ |
@@ -245,7 +271,8 @@ _ENTRY(__early_start) | |||
245 | beq 2f; /* Bail if no table */ \ | 271 | beq 2f; /* Bail if no table */ \ |
246 | rlwimi r12, r10, 23, 20, 28; /* Compute pte address */ \ | 272 | rlwimi r12, r10, 23, 20, 28; /* Compute pte address */ \ |
247 | lwz r11, 4(r12); /* Get pte entry */ | 273 | lwz r11, 4(r12); /* Get pte entry */ |
248 | #else | 274 | #endif /* HUGEPAGE */ |
275 | #else /* !PTE_64BIT */ | ||
249 | #define FIND_PTE \ | 276 | #define FIND_PTE \ |
250 | rlwimi r11, r10, 12, 20, 29; /* Create L1 (pgdir/pmd) address */ \ | 277 | rlwimi r11, r10, 12, 20, 29; /* Create L1 (pgdir/pmd) address */ \ |
251 | lwz r11, 0(r11); /* Get L1 entry */ \ | 278 | lwz r11, 0(r11); /* Get L1 entry */ \ |
@@ -402,8 +429,8 @@ interrupt_base: | |||
402 | 429 | ||
403 | #ifdef CONFIG_PTE_64BIT | 430 | #ifdef CONFIG_PTE_64BIT |
404 | #ifdef CONFIG_SMP | 431 | #ifdef CONFIG_SMP |
405 | subf r10,r11,r12 /* create false data dep */ | 432 | subf r13,r11,r12 /* create false data dep */ |
406 | lwzx r13,r11,r10 /* Get upper pte bits */ | 433 | lwzx r13,r11,r13 /* Get upper pte bits */ |
407 | #else | 434 | #else |
408 | lwz r13,0(r12) /* Get upper pte bits */ | 435 | lwz r13,0(r12) /* Get upper pte bits */ |
409 | #endif | 436 | #endif |
@@ -483,8 +510,8 @@ interrupt_base: | |||
483 | 510 | ||
484 | #ifdef CONFIG_PTE_64BIT | 511 | #ifdef CONFIG_PTE_64BIT |
485 | #ifdef CONFIG_SMP | 512 | #ifdef CONFIG_SMP |
486 | subf r10,r11,r12 /* create false data dep */ | 513 | subf r13,r11,r12 /* create false data dep */ |
487 | lwzx r13,r11,r10 /* Get upper pte bits */ | 514 | lwzx r13,r11,r13 /* Get upper pte bits */ |
488 | #else | 515 | #else |
489 | lwz r13,0(r12) /* Get upper pte bits */ | 516 | lwz r13,0(r12) /* Get upper pte bits */ |
490 | #endif | 517 | #endif |
@@ -548,7 +575,7 @@ interrupt_base: | |||
548 | /* | 575 | /* |
549 | * Both the instruction and data TLB miss get to this | 576 | * Both the instruction and data TLB miss get to this |
550 | * point to load the TLB. | 577 | * point to load the TLB. |
551 | * r10 - available to use | 578 | * r10 - tsize encoding (if HUGETLB_PAGE) or available to use |
552 | * r11 - TLB (info from Linux PTE) | 579 | * r11 - TLB (info from Linux PTE) |
553 | * r12 - available to use | 580 | * r12 - available to use |
554 | * r13 - upper bits of PTE (if PTE_64BIT) or available to use | 581 | * r13 - upper bits of PTE (if PTE_64BIT) or available to use |
@@ -558,21 +585,73 @@ interrupt_base: | |||
558 | * Upon exit, we reload everything and RFI. | 585 | * Upon exit, we reload everything and RFI. |
559 | */ | 586 | */ |
560 | finish_tlb_load: | 587 | finish_tlb_load: |
588 | #ifdef CONFIG_HUGETLB_PAGE | ||
589 | cmpwi 6, r10, 0 /* check for huge page */ | ||
590 | beq 6, finish_tlb_load_cont /* !huge */ | ||
591 | |||
592 | /* Alas, we need more scratch registers for hugepages */ | ||
593 | mfspr r12, SPRN_SPRG_THREAD | ||
594 | stw r14, THREAD_NORMSAVE(4)(r12) | ||
595 | stw r15, THREAD_NORMSAVE(5)(r12) | ||
596 | stw r16, THREAD_NORMSAVE(6)(r12) | ||
597 | stw r17, THREAD_NORMSAVE(7)(r12) | ||
598 | |||
599 | /* Get the next_tlbcam_idx percpu var */ | ||
600 | #ifdef CONFIG_SMP | ||
601 | lwz r12, THREAD_INFO-THREAD(r12) | ||
602 | lwz r15, TI_CPU(r12) | ||
603 | lis r14, __per_cpu_offset@h | ||
604 | ori r14, r14, __per_cpu_offset@l | ||
605 | rlwinm r15, r15, 2, 0, 29 | ||
606 | lwzx r16, r14, r15 | ||
607 | #else | ||
608 | li r16, 0 | ||
609 | #endif | ||
610 | lis r17, next_tlbcam_idx@h | ||
611 | ori r17, r17, next_tlbcam_idx@l | ||
612 | add r17, r17, r16 /* r17 = *next_tlbcam_idx */ | ||
613 | lwz r15, 0(r17) /* r15 = next_tlbcam_idx */ | ||
614 | |||
615 | lis r14, MAS0_TLBSEL(1)@h /* select TLB1 (TLBCAM) */ | ||
616 | rlwimi r14, r15, 16, 4, 15 /* next_tlbcam_idx entry */ | ||
617 | mtspr SPRN_MAS0, r14 | ||
618 | |||
619 | /* Extract TLB1CFG(NENTRY) */ | ||
620 | mfspr r16, SPRN_TLB1CFG | ||
621 | andi. r16, r16, 0xfff | ||
622 | |||
623 | /* Update next_tlbcam_idx, wrapping when necessary */ | ||
624 | addi r15, r15, 1 | ||
625 | cmpw r15, r16 | ||
626 | blt 100f | ||
627 | lis r14, tlbcam_index@h | ||
628 | ori r14, r14, tlbcam_index@l | ||
629 | lwz r15, 0(r14) | ||
630 | 100: stw r15, 0(r17) | ||
631 | |||
632 | /* | ||
633 | * Calc MAS1_TSIZE from r10 (which has pshift encoded) | ||
634 | * tlb_enc = (pshift - 10). | ||
635 | */ | ||
636 | subi r15, r10, 10 | ||
637 | mfspr r16, SPRN_MAS1 | ||
638 | rlwimi r16, r15, 7, 20, 24 | ||
639 | mtspr SPRN_MAS1, r16 | ||
640 | |||
641 | /* copy the pshift for use later */ | ||
642 | mr r14, r10 | ||
643 | |||
644 | /* fall through */ | ||
645 | |||
646 | #endif /* CONFIG_HUGETLB_PAGE */ | ||
647 | |||
561 | /* | 648 | /* |
562 | * We set execute, because we don't have the granularity to | 649 | * We set execute, because we don't have the granularity to |
563 | * properly set this at the page level (Linux problem). | 650 | * properly set this at the page level (Linux problem). |
564 | * Many of these bits are software only. Bits we don't set | 651 | * Many of these bits are software only. Bits we don't set |
565 | * here we (properly should) assume have the appropriate value. | 652 | * here we (properly should) assume have the appropriate value. |
566 | */ | 653 | */ |
567 | 654 | finish_tlb_load_cont: | |
568 | mfspr r12, SPRN_MAS2 | ||
569 | #ifdef CONFIG_PTE_64BIT | ||
570 | rlwimi r12, r11, 32-19, 27, 31 /* extract WIMGE from pte */ | ||
571 | #else | ||
572 | rlwimi r12, r11, 26, 27, 31 /* extract WIMGE from pte */ | ||
573 | #endif | ||
574 | mtspr SPRN_MAS2, r12 | ||
575 | |||
576 | #ifdef CONFIG_PTE_64BIT | 655 | #ifdef CONFIG_PTE_64BIT |
577 | rlwinm r12, r11, 32-2, 26, 31 /* Move in perm bits */ | 656 | rlwinm r12, r11, 32-2, 26, 31 /* Move in perm bits */ |
578 | andi. r10, r11, _PAGE_DIRTY | 657 | andi. r10, r11, _PAGE_DIRTY |
@@ -581,22 +660,40 @@ finish_tlb_load: | |||
581 | andc r12, r12, r10 | 660 | andc r12, r12, r10 |
582 | 1: rlwimi r12, r13, 20, 0, 11 /* grab RPN[32:43] */ | 661 | 1: rlwimi r12, r13, 20, 0, 11 /* grab RPN[32:43] */ |
583 | rlwimi r12, r11, 20, 12, 19 /* grab RPN[44:51] */ | 662 | rlwimi r12, r11, 20, 12, 19 /* grab RPN[44:51] */ |
584 | mtspr SPRN_MAS3, r12 | 663 | 2: mtspr SPRN_MAS3, r12 |
585 | BEGIN_MMU_FTR_SECTION | 664 | BEGIN_MMU_FTR_SECTION |
586 | srwi r10, r13, 12 /* grab RPN[12:31] */ | 665 | srwi r10, r13, 12 /* grab RPN[12:31] */ |
587 | mtspr SPRN_MAS7, r10 | 666 | mtspr SPRN_MAS7, r10 |
588 | END_MMU_FTR_SECTION_IFSET(MMU_FTR_BIG_PHYS) | 667 | END_MMU_FTR_SECTION_IFSET(MMU_FTR_BIG_PHYS) |
589 | #else | 668 | #else |
590 | li r10, (_PAGE_EXEC | _PAGE_PRESENT) | 669 | li r10, (_PAGE_EXEC | _PAGE_PRESENT) |
670 | mr r13, r11 | ||
591 | rlwimi r10, r11, 31, 29, 29 /* extract _PAGE_DIRTY into SW */ | 671 | rlwimi r10, r11, 31, 29, 29 /* extract _PAGE_DIRTY into SW */ |
592 | and r12, r11, r10 | 672 | and r12, r11, r10 |
593 | andi. r10, r11, _PAGE_USER /* Test for _PAGE_USER */ | 673 | andi. r10, r11, _PAGE_USER /* Test for _PAGE_USER */ |
594 | slwi r10, r12, 1 | 674 | slwi r10, r12, 1 |
595 | or r10, r10, r12 | 675 | or r10, r10, r12 |
596 | iseleq r12, r12, r10 | 676 | iseleq r12, r12, r10 |
597 | rlwimi r11, r12, 0, 20, 31 /* Extract RPN from PTE and merge with perms */ | 677 | rlwimi r13, r12, 0, 20, 31 /* Get RPN from PTE, merge w/ perms */ |
598 | mtspr SPRN_MAS3, r11 | 678 | mtspr SPRN_MAS3, r13 |
599 | #endif | 679 | #endif |
680 | |||
681 | mfspr r12, SPRN_MAS2 | ||
682 | #ifdef CONFIG_PTE_64BIT | ||
683 | rlwimi r12, r11, 32-19, 27, 31 /* extract WIMGE from pte */ | ||
684 | #else | ||
685 | rlwimi r12, r11, 26, 27, 31 /* extract WIMGE from pte */ | ||
686 | #endif | ||
687 | #ifdef CONFIG_HUGETLB_PAGE | ||
688 | beq 6, 3f /* don't mask if page isn't huge */ | ||
689 | li r13, 1 | ||
690 | slw r13, r13, r14 | ||
691 | subi r13, r13, 1 | ||
692 | rlwinm r13, r13, 0, 0, 19 /* bottom bits used for WIMGE/etc */ | ||
693 | andc r12, r12, r13 /* mask off ea bits within the page */ | ||
694 | #endif | ||
695 | 3: mtspr SPRN_MAS2, r12 | ||
696 | |||
600 | #ifdef CONFIG_E200 | 697 | #ifdef CONFIG_E200 |
601 | /* Round robin TLB1 entries assignment */ | 698 | /* Round robin TLB1 entries assignment */ |
602 | mfspr r12, SPRN_MAS0 | 699 | mfspr r12, SPRN_MAS0 |
@@ -622,11 +719,19 @@ END_MMU_FTR_SECTION_IFSET(MMU_FTR_BIG_PHYS) | |||
622 | mtspr SPRN_MAS0,r12 | 719 | mtspr SPRN_MAS0,r12 |
623 | #endif /* CONFIG_E200 */ | 720 | #endif /* CONFIG_E200 */ |
624 | 721 | ||
722 | tlb_write_entry: | ||
625 | tlbwe | 723 | tlbwe |
626 | 724 | ||
627 | /* Done...restore registers and get out of here. */ | 725 | /* Done...restore registers and get out of here. */ |
628 | mfspr r10, SPRN_SPRG_THREAD | 726 | mfspr r10, SPRN_SPRG_THREAD |
629 | lwz r11, THREAD_NORMSAVE(3)(r10) | 727 | #ifdef CONFIG_HUGETLB_PAGE |
728 | beq 6, 8f /* skip restore for 4k page faults */ | ||
729 | lwz r14, THREAD_NORMSAVE(4)(r10) | ||
730 | lwz r15, THREAD_NORMSAVE(5)(r10) | ||
731 | lwz r16, THREAD_NORMSAVE(6)(r10) | ||
732 | lwz r17, THREAD_NORMSAVE(7)(r10) | ||
733 | #endif | ||
734 | 8: lwz r11, THREAD_NORMSAVE(3)(r10) | ||
630 | mtcr r11 | 735 | mtcr r11 |
631 | lwz r13, THREAD_NORMSAVE(2)(r10) | 736 | lwz r13, THREAD_NORMSAVE(2)(r10) |
632 | lwz r12, THREAD_NORMSAVE(1)(r10) | 737 | lwz r12, THREAD_NORMSAVE(1)(r10) |
diff --git a/arch/powerpc/kernel/hw_breakpoint.c b/arch/powerpc/kernel/hw_breakpoint.c index 5ecd0401cdb1..2bc0584be81c 100644 --- a/arch/powerpc/kernel/hw_breakpoint.c +++ b/arch/powerpc/kernel/hw_breakpoint.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <linux/kprobes.h> | 27 | #include <linux/kprobes.h> |
28 | #include <linux/percpu.h> | 28 | #include <linux/percpu.h> |
29 | #include <linux/kernel.h> | 29 | #include <linux/kernel.h> |
30 | #include <linux/module.h> | ||
31 | #include <linux/sched.h> | 30 | #include <linux/sched.h> |
32 | #include <linux/init.h> | 31 | #include <linux/init.h> |
33 | #include <linux/smp.h> | 32 | #include <linux/smp.h> |
diff --git a/arch/powerpc/kernel/ibmebus.c b/arch/powerpc/kernel/ibmebus.c index 28581f1ad2c0..d39ae606ff8d 100644 --- a/arch/powerpc/kernel/ibmebus.c +++ b/arch/powerpc/kernel/ibmebus.c | |||
@@ -37,12 +37,14 @@ | |||
37 | */ | 37 | */ |
38 | 38 | ||
39 | #include <linux/init.h> | 39 | #include <linux/init.h> |
40 | #include <linux/export.h> | ||
40 | #include <linux/console.h> | 41 | #include <linux/console.h> |
41 | #include <linux/kobject.h> | 42 | #include <linux/kobject.h> |
42 | #include <linux/dma-mapping.h> | 43 | #include <linux/dma-mapping.h> |
43 | #include <linux/interrupt.h> | 44 | #include <linux/interrupt.h> |
44 | #include <linux/of.h> | 45 | #include <linux/of.h> |
45 | #include <linux/slab.h> | 46 | #include <linux/slab.h> |
47 | #include <linux/stat.h> | ||
46 | #include <linux/of_platform.h> | 48 | #include <linux/of_platform.h> |
47 | #include <asm/ibmebus.h> | 49 | #include <asm/ibmebus.h> |
48 | #include <asm/abs_addr.h> | 50 | #include <asm/abs_addr.h> |
@@ -125,17 +127,23 @@ static void ibmebus_unmap_sg(struct device *dev, | |||
125 | 127 | ||
126 | static int ibmebus_dma_supported(struct device *dev, u64 mask) | 128 | static int ibmebus_dma_supported(struct device *dev, u64 mask) |
127 | { | 129 | { |
128 | return 1; | 130 | return mask == DMA_BIT_MASK(64); |
131 | } | ||
132 | |||
133 | static u64 ibmebus_dma_get_required_mask(struct device *dev) | ||
134 | { | ||
135 | return DMA_BIT_MASK(64); | ||
129 | } | 136 | } |
130 | 137 | ||
131 | static struct dma_map_ops ibmebus_dma_ops = { | 138 | static struct dma_map_ops ibmebus_dma_ops = { |
132 | .alloc_coherent = ibmebus_alloc_coherent, | 139 | .alloc_coherent = ibmebus_alloc_coherent, |
133 | .free_coherent = ibmebus_free_coherent, | 140 | .free_coherent = ibmebus_free_coherent, |
134 | .map_sg = ibmebus_map_sg, | 141 | .map_sg = ibmebus_map_sg, |
135 | .unmap_sg = ibmebus_unmap_sg, | 142 | .unmap_sg = ibmebus_unmap_sg, |
136 | .dma_supported = ibmebus_dma_supported, | 143 | .dma_supported = ibmebus_dma_supported, |
137 | .map_page = ibmebus_map_page, | 144 | .get_required_mask = ibmebus_dma_get_required_mask, |
138 | .unmap_page = ibmebus_unmap_page, | 145 | .map_page = ibmebus_map_page, |
146 | .unmap_page = ibmebus_unmap_page, | ||
139 | }; | 147 | }; |
140 | 148 | ||
141 | static int ibmebus_match_path(struct device *dev, void *data) | 149 | static int ibmebus_match_path(struct device *dev, void *data) |
diff --git a/arch/powerpc/kernel/idle_e500.S b/arch/powerpc/kernel/idle_e500.S index 3e2b95c6ae67..4f0ab85f3788 100644 --- a/arch/powerpc/kernel/idle_e500.S +++ b/arch/powerpc/kernel/idle_e500.S | |||
@@ -26,7 +26,7 @@ _GLOBAL(e500_idle) | |||
26 | ori r4,r4,_TLF_NAPPING /* so when we take an exception */ | 26 | ori r4,r4,_TLF_NAPPING /* so when we take an exception */ |
27 | stw r4,TI_LOCAL_FLAGS(r3) /* it will return to our caller */ | 27 | stw r4,TI_LOCAL_FLAGS(r3) /* it will return to our caller */ |
28 | 28 | ||
29 | #ifdef CONFIG_E500MC | 29 | #ifdef CONFIG_PPC_E500MC |
30 | wrteei 1 | 30 | wrteei 1 |
31 | 1: wait | 31 | 1: wait |
32 | 32 | ||
diff --git a/arch/powerpc/kernel/init_task.c b/arch/powerpc/kernel/init_task.c index 2375b7eb1c76..d076d465dbd1 100644 --- a/arch/powerpc/kernel/init_task.c +++ b/arch/powerpc/kernel/init_task.c | |||
@@ -1,5 +1,5 @@ | |||
1 | #include <linux/mm.h> | 1 | #include <linux/mm.h> |
2 | #include <linux/module.h> | 2 | #include <linux/export.h> |
3 | #include <linux/sched.h> | 3 | #include <linux/sched.h> |
4 | #include <linux/init.h> | 4 | #include <linux/init.h> |
5 | #include <linux/init_task.h> | 5 | #include <linux/init_task.h> |
diff --git a/arch/powerpc/kernel/io-workarounds.c b/arch/powerpc/kernel/io-workarounds.c index ffafaea3d261..12d329bcbb98 100644 --- a/arch/powerpc/kernel/io-workarounds.c +++ b/arch/powerpc/kernel/io-workarounds.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #undef DEBUG | 12 | #undef DEBUG |
13 | 13 | ||
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/sched.h> /* for init_mm */ | ||
15 | 16 | ||
16 | #include <asm/io.h> | 17 | #include <asm/io.h> |
17 | #include <asm/machdep.h> | 18 | #include <asm/machdep.h> |
diff --git a/arch/powerpc/kernel/io.c b/arch/powerpc/kernel/io.c index 8dc7547c2377..886381f32c3d 100644 --- a/arch/powerpc/kernel/io.c +++ b/arch/powerpc/kernel/io.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include <linux/kernel.h> | 19 | #include <linux/kernel.h> |
20 | #include <linux/types.h> | 20 | #include <linux/types.h> |
21 | #include <linux/compiler.h> | 21 | #include <linux/compiler.h> |
22 | #include <linux/module.h> | 22 | #include <linux/export.h> |
23 | 23 | ||
24 | #include <asm/io.h> | 24 | #include <asm/io.h> |
25 | #include <asm/firmware.h> | 25 | #include <asm/firmware.h> |
diff --git a/arch/powerpc/kernel/iomap.c b/arch/powerpc/kernel/iomap.c index b25f6325fc70..262791807397 100644 --- a/arch/powerpc/kernel/iomap.c +++ b/arch/powerpc/kernel/iomap.c | |||
@@ -6,6 +6,7 @@ | |||
6 | #include <linux/init.h> | 6 | #include <linux/init.h> |
7 | #include <linux/pci.h> | 7 | #include <linux/pci.h> |
8 | #include <linux/mm.h> | 8 | #include <linux/mm.h> |
9 | #include <linux/export.h> | ||
9 | #include <asm/io.h> | 10 | #include <asm/io.h> |
10 | #include <asm/pci-bridge.h> | 11 | #include <asm/pci-bridge.h> |
11 | 12 | ||
diff --git a/arch/powerpc/kernel/iommu.c b/arch/powerpc/kernel/iommu.c index 961bb03413f3..0cfcf98aafca 100644 --- a/arch/powerpc/kernel/iommu.c +++ b/arch/powerpc/kernel/iommu.c | |||
@@ -501,6 +501,14 @@ struct iommu_table *iommu_init_table(struct iommu_table *tbl, int nid) | |||
501 | tbl->it_map = page_address(page); | 501 | tbl->it_map = page_address(page); |
502 | memset(tbl->it_map, 0, sz); | 502 | memset(tbl->it_map, 0, sz); |
503 | 503 | ||
504 | /* | ||
505 | * Reserve page 0 so it will not be used for any mappings. | ||
506 | * This avoids buggy drivers that consider page 0 to be invalid | ||
507 | * to crash the machine or even lose data. | ||
508 | */ | ||
509 | if (tbl->it_offset == 0) | ||
510 | set_bit(0, tbl->it_map); | ||
511 | |||
504 | tbl->it_hint = 0; | 512 | tbl->it_hint = 0; |
505 | tbl->it_largehint = tbl->it_halfpoint; | 513 | tbl->it_largehint = tbl->it_halfpoint; |
506 | spin_lock_init(&tbl->it_lock); | 514 | spin_lock_init(&tbl->it_lock); |
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c index d281fb6f12f3..5c3c46948d94 100644 --- a/arch/powerpc/kernel/irq.c +++ b/arch/powerpc/kernel/irq.c | |||
@@ -30,7 +30,7 @@ | |||
30 | 30 | ||
31 | #undef DEBUG | 31 | #undef DEBUG |
32 | 32 | ||
33 | #include <linux/module.h> | 33 | #include <linux/export.h> |
34 | #include <linux/threads.h> | 34 | #include <linux/threads.h> |
35 | #include <linux/kernel_stat.h> | 35 | #include <linux/kernel_stat.h> |
36 | #include <linux/signal.h> | 36 | #include <linux/signal.h> |
diff --git a/arch/powerpc/kernel/isa-bridge.c b/arch/powerpc/kernel/isa-bridge.c index 4d5731b2429a..479752901ec6 100644 --- a/arch/powerpc/kernel/isa-bridge.c +++ b/arch/powerpc/kernel/isa-bridge.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
19 | #include <linux/pci.h> | 19 | #include <linux/pci.h> |
20 | #include <linux/string.h> | 20 | #include <linux/string.h> |
21 | #include <linux/export.h> | ||
21 | #include <linux/init.h> | 22 | #include <linux/init.h> |
22 | #include <linux/mm.h> | 23 | #include <linux/mm.h> |
23 | #include <linux/notifier.h> | 24 | #include <linux/notifier.h> |
diff --git a/arch/powerpc/kernel/kvm.c b/arch/powerpc/kernel/kvm.c index b06bdae04064..35f27646c4ff 100644 --- a/arch/powerpc/kernel/kvm.c +++ b/arch/powerpc/kernel/kvm.c | |||
@@ -20,6 +20,7 @@ | |||
20 | 20 | ||
21 | #include <linux/kvm_host.h> | 21 | #include <linux/kvm_host.h> |
22 | #include <linux/init.h> | 22 | #include <linux/init.h> |
23 | #include <linux/export.h> | ||
23 | #include <linux/kvm_para.h> | 24 | #include <linux/kvm_para.h> |
24 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
25 | #include <linux/of.h> | 26 | #include <linux/of.h> |
diff --git a/arch/powerpc/kernel/legacy_serial.c b/arch/powerpc/kernel/legacy_serial.c index 2b97b80d6d7d..c7b5afeecaf2 100644 --- a/arch/powerpc/kernel/legacy_serial.c +++ b/arch/powerpc/kernel/legacy_serial.c | |||
@@ -6,6 +6,7 @@ | |||
6 | #include <linux/pci.h> | 6 | #include <linux/pci.h> |
7 | #include <linux/of_address.h> | 7 | #include <linux/of_address.h> |
8 | #include <linux/of_device.h> | 8 | #include <linux/of_device.h> |
9 | #include <linux/serial_reg.h> | ||
9 | #include <asm/io.h> | 10 | #include <asm/io.h> |
10 | #include <asm/mmu.h> | 11 | #include <asm/mmu.h> |
11 | #include <asm/prom.h> | 12 | #include <asm/prom.h> |
@@ -47,6 +48,24 @@ static struct __initdata of_device_id legacy_serial_parents[] = { | |||
47 | static unsigned int legacy_serial_count; | 48 | static unsigned int legacy_serial_count; |
48 | static int legacy_serial_console = -1; | 49 | static int legacy_serial_console = -1; |
49 | 50 | ||
51 | static unsigned int tsi_serial_in(struct uart_port *p, int offset) | ||
52 | { | ||
53 | unsigned int tmp; | ||
54 | offset = offset << p->regshift; | ||
55 | if (offset == UART_IIR) { | ||
56 | tmp = readl(p->membase + (UART_IIR & ~3)); | ||
57 | return (tmp >> 16) & 0xff; /* UART_IIR % 4 == 2 */ | ||
58 | } else | ||
59 | return readb(p->membase + offset); | ||
60 | } | ||
61 | |||
62 | static void tsi_serial_out(struct uart_port *p, int offset, int value) | ||
63 | { | ||
64 | offset = offset << p->regshift; | ||
65 | if (!((offset == UART_IER) && (value & UART_IER_UUE))) | ||
66 | writeb(value, p->membase + offset); | ||
67 | } | ||
68 | |||
50 | static int __init add_legacy_port(struct device_node *np, int want_index, | 69 | static int __init add_legacy_port(struct device_node *np, int want_index, |
51 | int iotype, phys_addr_t base, | 70 | int iotype, phys_addr_t base, |
52 | phys_addr_t taddr, unsigned long irq, | 71 | phys_addr_t taddr, unsigned long irq, |
@@ -102,6 +121,7 @@ static int __init add_legacy_port(struct device_node *np, int want_index, | |||
102 | legacy_serial_ports[index].iobase = base; | 121 | legacy_serial_ports[index].iobase = base; |
103 | else | 122 | else |
104 | legacy_serial_ports[index].mapbase = base; | 123 | legacy_serial_ports[index].mapbase = base; |
124 | |||
105 | legacy_serial_ports[index].iotype = iotype; | 125 | legacy_serial_ports[index].iotype = iotype; |
106 | legacy_serial_ports[index].uartclk = clock; | 126 | legacy_serial_ports[index].uartclk = clock; |
107 | legacy_serial_ports[index].irq = irq; | 127 | legacy_serial_ports[index].irq = irq; |
@@ -112,6 +132,11 @@ static int __init add_legacy_port(struct device_node *np, int want_index, | |||
112 | legacy_serial_infos[index].speed = spd ? be32_to_cpup(spd) : 0; | 132 | legacy_serial_infos[index].speed = spd ? be32_to_cpup(spd) : 0; |
113 | legacy_serial_infos[index].irq_check_parent = irq_check_parent; | 133 | legacy_serial_infos[index].irq_check_parent = irq_check_parent; |
114 | 134 | ||
135 | if (iotype == UPIO_TSI) { | ||
136 | legacy_serial_ports[index].serial_in = tsi_serial_in; | ||
137 | legacy_serial_ports[index].serial_out = tsi_serial_out; | ||
138 | } | ||
139 | |||
115 | printk(KERN_DEBUG "Found legacy serial port %d for %s\n", | 140 | printk(KERN_DEBUG "Found legacy serial port %d for %s\n", |
116 | index, np->full_name); | 141 | index, np->full_name); |
117 | printk(KERN_DEBUG " %s=%llx, taddr=%llx, irq=%lx, clk=%d, speed=%d\n", | 142 | printk(KERN_DEBUG " %s=%llx, taddr=%llx, irq=%lx, clk=%d, speed=%d\n", |
diff --git a/arch/powerpc/kernel/machine_kexec_64.c b/arch/powerpc/kernel/machine_kexec_64.c index 583af70c4b14..26ccbf77dd41 100644 --- a/arch/powerpc/kernel/machine_kexec_64.c +++ b/arch/powerpc/kernel/machine_kexec_64.c | |||
@@ -74,8 +74,7 @@ int default_machine_kexec_prepare(struct kimage *image) | |||
74 | } | 74 | } |
75 | 75 | ||
76 | /* We also should not overwrite the tce tables */ | 76 | /* We also should not overwrite the tce tables */ |
77 | for (node = of_find_node_by_type(NULL, "pci"); node != NULL; | 77 | for_each_node_by_type(node, "pci") { |
78 | node = of_find_node_by_type(node, "pci")) { | ||
79 | basep = of_get_property(node, "linux,tce-base", NULL); | 78 | basep = of_get_property(node, "linux,tce-base", NULL); |
80 | sizep = of_get_property(node, "linux,tce-size", NULL); | 79 | sizep = of_get_property(node, "linux,tce-size", NULL); |
81 | if (basep == NULL || sizep == NULL) | 80 | if (basep == NULL || sizep == NULL) |
diff --git a/arch/powerpc/kernel/misc_32.S b/arch/powerpc/kernel/misc_32.S index 998a10028608..f7d760ab5ca1 100644 --- a/arch/powerpc/kernel/misc_32.S +++ b/arch/powerpc/kernel/misc_32.S | |||
@@ -8,6 +8,8 @@ | |||
8 | * kexec bits: | 8 | * kexec bits: |
9 | * Copyright (C) 2002-2003 Eric Biederman <ebiederm@xmission.com> | 9 | * Copyright (C) 2002-2003 Eric Biederman <ebiederm@xmission.com> |
10 | * GameCube/ppc32 port Copyright (C) 2004 Albert Herranz | 10 | * GameCube/ppc32 port Copyright (C) 2004 Albert Herranz |
11 | * PPC44x port. Copyright (C) 2011, IBM Corporation | ||
12 | * Author: Suzuki Poulose <suzuki@in.ibm.com> | ||
11 | * | 13 | * |
12 | * This program is free software; you can redistribute it and/or | 14 | * This program is free software; you can redistribute it and/or |
13 | * modify it under the terms of the GNU General Public License | 15 | * modify it under the terms of the GNU General Public License |
@@ -736,6 +738,175 @@ relocate_new_kernel: | |||
736 | mr r5, r31 | 738 | mr r5, r31 |
737 | 739 | ||
738 | li r0, 0 | 740 | li r0, 0 |
741 | #elif defined(CONFIG_44x) && !defined(CONFIG_47x) | ||
742 | |||
743 | /* | ||
744 | * Code for setting up 1:1 mapping for PPC440x for KEXEC | ||
745 | * | ||
746 | * We cannot switch off the MMU on PPC44x. | ||
747 | * So we: | ||
748 | * 1) Invalidate all the mappings except the one we are running from. | ||
749 | * 2) Create a tmp mapping for our code in the other address space(TS) and | ||
750 | * jump to it. Invalidate the entry we started in. | ||
751 | * 3) Create a 1:1 mapping for 0-2GiB in chunks of 256M in original TS. | ||
752 | * 4) Jump to the 1:1 mapping in original TS. | ||
753 | * 5) Invalidate the tmp mapping. | ||
754 | * | ||
755 | * - Based on the kexec support code for FSL BookE | ||
756 | * - Doesn't support 47x yet. | ||
757 | * | ||
758 | */ | ||
759 | /* Save our parameters */ | ||
760 | mr r29, r3 | ||
761 | mr r30, r4 | ||
762 | mr r31, r5 | ||
763 | |||
764 | /* Load our MSR_IS and TID to MMUCR for TLB search */ | ||
765 | mfspr r3,SPRN_PID | ||
766 | mfmsr r4 | ||
767 | andi. r4,r4,MSR_IS@l | ||
768 | beq wmmucr | ||
769 | oris r3,r3,PPC44x_MMUCR_STS@h | ||
770 | wmmucr: | ||
771 | mtspr SPRN_MMUCR,r3 | ||
772 | sync | ||
773 | |||
774 | /* | ||
775 | * Invalidate all the TLB entries except the current entry | ||
776 | * where we are running from | ||
777 | */ | ||
778 | bl 0f /* Find our address */ | ||
779 | 0: mflr r5 /* Make it accessible */ | ||
780 | tlbsx r23,0,r5 /* Find entry we are in */ | ||
781 | li r4,0 /* Start at TLB entry 0 */ | ||
782 | li r3,0 /* Set PAGEID inval value */ | ||
783 | 1: cmpw r23,r4 /* Is this our entry? */ | ||
784 | beq skip /* If so, skip the inval */ | ||
785 | tlbwe r3,r4,PPC44x_TLB_PAGEID /* If not, inval the entry */ | ||
786 | skip: | ||
787 | addi r4,r4,1 /* Increment */ | ||
788 | cmpwi r4,64 /* Are we done? */ | ||
789 | bne 1b /* If not, repeat */ | ||
790 | isync | ||
791 | |||
792 | /* Create a temp mapping and jump to it */ | ||
793 | andi. r6, r23, 1 /* Find the index to use */ | ||
794 | addi r24, r6, 1 /* r24 will contain 1 or 2 */ | ||
795 | |||
796 | mfmsr r9 /* get the MSR */ | ||
797 | rlwinm r5, r9, 27, 31, 31 /* Extract the MSR[IS] */ | ||
798 | xori r7, r5, 1 /* Use the other address space */ | ||
799 | |||
800 | /* Read the current mapping entries */ | ||
801 | tlbre r3, r23, PPC44x_TLB_PAGEID | ||
802 | tlbre r4, r23, PPC44x_TLB_XLAT | ||
803 | tlbre r5, r23, PPC44x_TLB_ATTRIB | ||
804 | |||
805 | /* Save our current XLAT entry */ | ||
806 | mr r25, r4 | ||
807 | |||
808 | /* Extract the TLB PageSize */ | ||
809 | li r10, 1 /* r10 will hold PageSize */ | ||
810 | rlwinm r11, r3, 0, 24, 27 /* bits 24-27 */ | ||
811 | |||
812 | /* XXX: As of now we use 256M, 4K pages */ | ||
813 | cmpwi r11, PPC44x_TLB_256M | ||
814 | bne tlb_4k | ||
815 | rotlwi r10, r10, 28 /* r10 = 256M */ | ||
816 | b write_out | ||
817 | tlb_4k: | ||
818 | cmpwi r11, PPC44x_TLB_4K | ||
819 | bne default | ||
820 | rotlwi r10, r10, 12 /* r10 = 4K */ | ||
821 | b write_out | ||
822 | default: | ||
823 | rotlwi r10, r10, 10 /* r10 = 1K */ | ||
824 | |||
825 | write_out: | ||
826 | /* | ||
827 | * Write out the tmp 1:1 mapping for this code in other address space | ||
828 | * Fixup EPN = RPN , TS=other address space | ||
829 | */ | ||
830 | insrwi r3, r7, 1, 23 /* Bit 23 is TS for PAGEID field */ | ||
831 | |||
832 | /* Write out the tmp mapping entries */ | ||
833 | tlbwe r3, r24, PPC44x_TLB_PAGEID | ||
834 | tlbwe r4, r24, PPC44x_TLB_XLAT | ||
835 | tlbwe r5, r24, PPC44x_TLB_ATTRIB | ||
836 | |||
837 | subi r11, r10, 1 /* PageOffset Mask = PageSize - 1 */ | ||
838 | not r10, r11 /* Mask for PageNum */ | ||
839 | |||
840 | /* Switch to other address space in MSR */ | ||
841 | insrwi r9, r7, 1, 26 /* Set MSR[IS] = r7 */ | ||
842 | |||
843 | bl 1f | ||
844 | 1: mflr r8 | ||
845 | addi r8, r8, (2f-1b) /* Find the target offset */ | ||
846 | |||
847 | /* Jump to the tmp mapping */ | ||
848 | mtspr SPRN_SRR0, r8 | ||
849 | mtspr SPRN_SRR1, r9 | ||
850 | rfi | ||
851 | |||
852 | 2: | ||
853 | /* Invalidate the entry we were executing from */ | ||
854 | li r3, 0 | ||
855 | tlbwe r3, r23, PPC44x_TLB_PAGEID | ||
856 | |||
857 | /* attribute fields. rwx for SUPERVISOR mode */ | ||
858 | li r5, 0 | ||
859 | ori r5, r5, (PPC44x_TLB_SW | PPC44x_TLB_SR | PPC44x_TLB_SX | PPC44x_TLB_G) | ||
860 | |||
861 | /* Create 1:1 mapping in 256M pages */ | ||
862 | xori r7, r7, 1 /* Revert back to Original TS */ | ||
863 | |||
864 | li r8, 0 /* PageNumber */ | ||
865 | li r6, 3 /* TLB Index, start at 3 */ | ||
866 | |||
867 | next_tlb: | ||
868 | rotlwi r3, r8, 28 /* Create EPN (bits 0-3) */ | ||
869 | mr r4, r3 /* RPN = EPN */ | ||
870 | ori r3, r3, (PPC44x_TLB_VALID | PPC44x_TLB_256M) /* SIZE = 256M, Valid */ | ||
871 | insrwi r3, r7, 1, 23 /* Set TS from r7 */ | ||
872 | |||
873 | tlbwe r3, r6, PPC44x_TLB_PAGEID /* PageID field : EPN, V, SIZE */ | ||
874 | tlbwe r4, r6, PPC44x_TLB_XLAT /* Address translation : RPN */ | ||
875 | tlbwe r5, r6, PPC44x_TLB_ATTRIB /* Attributes */ | ||
876 | |||
877 | addi r8, r8, 1 /* Increment PN */ | ||
878 | addi r6, r6, 1 /* Increment TLB Index */ | ||
879 | cmpwi r8, 8 /* Are we done ? */ | ||
880 | bne next_tlb | ||
881 | isync | ||
882 | |||
883 | /* Jump to the new mapping 1:1 */ | ||
884 | li r9,0 | ||
885 | insrwi r9, r7, 1, 26 /* Set MSR[IS] = r7 */ | ||
886 | |||
887 | bl 1f | ||
888 | 1: mflr r8 | ||
889 | and r8, r8, r11 /* Get our offset within page */ | ||
890 | addi r8, r8, (2f-1b) | ||
891 | |||
892 | and r5, r25, r10 /* Get our target PageNum */ | ||
893 | or r8, r8, r5 /* Target jump address */ | ||
894 | |||
895 | mtspr SPRN_SRR0, r8 | ||
896 | mtspr SPRN_SRR1, r9 | ||
897 | rfi | ||
898 | 2: | ||
899 | /* Invalidate the tmp entry we used */ | ||
900 | li r3, 0 | ||
901 | tlbwe r3, r24, PPC44x_TLB_PAGEID | ||
902 | sync | ||
903 | |||
904 | /* Restore the parameters */ | ||
905 | mr r3, r29 | ||
906 | mr r4, r30 | ||
907 | mr r5, r31 | ||
908 | |||
909 | li r0, 0 | ||
739 | #else | 910 | #else |
740 | li r0, 0 | 911 | li r0, 0 |
741 | 912 | ||
diff --git a/arch/powerpc/kernel/module.c b/arch/powerpc/kernel/module.c index a1cd701b5753..2d275707f419 100644 --- a/arch/powerpc/kernel/module.c +++ b/arch/powerpc/kernel/module.c | |||
@@ -16,7 +16,6 @@ | |||
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 17 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
18 | */ | 18 | */ |
19 | #include <linux/module.h> | ||
20 | #include <linux/elf.h> | 19 | #include <linux/elf.h> |
21 | #include <linux/moduleloader.h> | 20 | #include <linux/moduleloader.h> |
22 | #include <linux/err.h> | 21 | #include <linux/err.h> |
diff --git a/arch/powerpc/kernel/of_platform.c b/arch/powerpc/kernel/of_platform.c index 59dbf6abaaf3..e1612dfb4a93 100644 --- a/arch/powerpc/kernel/of_platform.c +++ b/arch/powerpc/kernel/of_platform.c | |||
@@ -15,7 +15,7 @@ | |||
15 | #include <linux/string.h> | 15 | #include <linux/string.h> |
16 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | #include <linux/module.h> | 18 | #include <linux/export.h> |
19 | #include <linux/mod_devicetable.h> | 19 | #include <linux/mod_devicetable.h> |
20 | #include <linux/pci.h> | 20 | #include <linux/pci.h> |
21 | #include <linux/of.h> | 21 | #include <linux/of.h> |
diff --git a/arch/powerpc/kernel/paca.c b/arch/powerpc/kernel/paca.c index 0a5a899846bb..41456ff55e14 100644 --- a/arch/powerpc/kernel/paca.c +++ b/arch/powerpc/kernel/paca.c | |||
@@ -8,7 +8,7 @@ | |||
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include <linux/smp.h> | 10 | #include <linux/smp.h> |
11 | #include <linux/module.h> | 11 | #include <linux/export.h> |
12 | #include <linux/memblock.h> | 12 | #include <linux/memblock.h> |
13 | 13 | ||
14 | #include <asm/firmware.h> | 14 | #include <asm/firmware.h> |
diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c index 32656f105250..458ed3bee663 100644 --- a/arch/powerpc/kernel/pci-common.c +++ b/arch/powerpc/kernel/pci-common.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/string.h> | 21 | #include <linux/string.h> |
22 | #include <linux/init.h> | 22 | #include <linux/init.h> |
23 | #include <linux/bootmem.h> | 23 | #include <linux/bootmem.h> |
24 | #include <linux/export.h> | ||
24 | #include <linux/of_address.h> | 25 | #include <linux/of_address.h> |
25 | #include <linux/of_pci.h> | 26 | #include <linux/of_pci.h> |
26 | #include <linux/mm.h> | 27 | #include <linux/mm.h> |
@@ -1730,6 +1731,17 @@ void __devinit pcibios_scan_phb(struct pci_controller *hose) | |||
1730 | 1731 | ||
1731 | if (mode == PCI_PROBE_NORMAL) | 1732 | if (mode == PCI_PROBE_NORMAL) |
1732 | hose->last_busno = bus->subordinate = pci_scan_child_bus(bus); | 1733 | hose->last_busno = bus->subordinate = pci_scan_child_bus(bus); |
1734 | |||
1735 | /* Configure PCI Express settings */ | ||
1736 | if (bus && !pci_has_flag(PCI_PROBE_ONLY)) { | ||
1737 | struct pci_bus *child; | ||
1738 | list_for_each_entry(child, &bus->children, node) { | ||
1739 | struct pci_dev *self = child->self; | ||
1740 | if (!self) | ||
1741 | continue; | ||
1742 | pcie_bus_configure_settings(child, self->pcie_mpss); | ||
1743 | } | ||
1744 | } | ||
1733 | } | 1745 | } |
1734 | 1746 | ||
1735 | static void fixup_hide_host_resource_fsl(struct pci_dev *dev) | 1747 | static void fixup_hide_host_resource_fsl(struct pci_dev *dev) |
diff --git a/arch/powerpc/kernel/pci_32.c b/arch/powerpc/kernel/pci_32.c index bb154511db5e..fdd1a3d951dc 100644 --- a/arch/powerpc/kernel/pci_32.c +++ b/arch/powerpc/kernel/pci_32.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/list.h> | 15 | #include <linux/list.h> |
16 | #include <linux/of.h> | 16 | #include <linux/of.h> |
17 | #include <linux/slab.h> | 17 | #include <linux/slab.h> |
18 | #include <linux/export.h> | ||
18 | 19 | ||
19 | #include <asm/processor.h> | 20 | #include <asm/processor.h> |
20 | #include <asm/io.h> | 21 | #include <asm/io.h> |
diff --git a/arch/powerpc/kernel/pci_64.c b/arch/powerpc/kernel/pci_64.c index ab34046752bf..bcf4bf9e72d9 100644 --- a/arch/powerpc/kernel/pci_64.c +++ b/arch/powerpc/kernel/pci_64.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/string.h> | 18 | #include <linux/string.h> |
19 | #include <linux/init.h> | 19 | #include <linux/init.h> |
20 | #include <linux/bootmem.h> | 20 | #include <linux/bootmem.h> |
21 | #include <linux/export.h> | ||
21 | #include <linux/mm.h> | 22 | #include <linux/mm.h> |
22 | #include <linux/list.h> | 23 | #include <linux/list.h> |
23 | #include <linux/syscalls.h> | 24 | #include <linux/syscalls.h> |
diff --git a/arch/powerpc/kernel/pci_dn.c b/arch/powerpc/kernel/pci_dn.c index 478f8d78716b..4e69deb89b37 100644 --- a/arch/powerpc/kernel/pci_dn.c +++ b/arch/powerpc/kernel/pci_dn.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/kernel.h> | 22 | #include <linux/kernel.h> |
23 | #include <linux/pci.h> | 23 | #include <linux/pci.h> |
24 | #include <linux/string.h> | 24 | #include <linux/string.h> |
25 | #include <linux/export.h> | ||
25 | #include <linux/init.h> | 26 | #include <linux/init.h> |
26 | #include <linux/gfp.h> | 27 | #include <linux/gfp.h> |
27 | 28 | ||
diff --git a/arch/powerpc/kernel/pci_of_scan.c b/arch/powerpc/kernel/pci_of_scan.c index fe0a5ad6f73e..b37d0b5a796e 100644 --- a/arch/powerpc/kernel/pci_of_scan.c +++ b/arch/powerpc/kernel/pci_of_scan.c | |||
@@ -15,6 +15,7 @@ | |||
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include <linux/pci.h> | 17 | #include <linux/pci.h> |
18 | #include <linux/export.h> | ||
18 | #include <asm/pci-bridge.h> | 19 | #include <asm/pci-bridge.h> |
19 | #include <asm/prom.h> | 20 | #include <asm/prom.h> |
20 | 21 | ||
diff --git a/arch/powerpc/kernel/pmc.c b/arch/powerpc/kernel/pmc.c index 461499b43cff..a841a9d136a2 100644 --- a/arch/powerpc/kernel/pmc.c +++ b/arch/powerpc/kernel/pmc.c | |||
@@ -14,7 +14,7 @@ | |||
14 | 14 | ||
15 | #include <linux/errno.h> | 15 | #include <linux/errno.h> |
16 | #include <linux/spinlock.h> | 16 | #include <linux/spinlock.h> |
17 | #include <linux/module.h> | 17 | #include <linux/export.h> |
18 | 18 | ||
19 | #include <asm/processor.h> | 19 | #include <asm/processor.h> |
20 | #include <asm/cputable.h> | 20 | #include <asm/cputable.h> |
diff --git a/arch/powerpc/kernel/power6-pmu.c b/arch/powerpc/kernel/power6-pmu.c index 03b95e2c6d65..0bbc901e7efc 100644 --- a/arch/powerpc/kernel/power6-pmu.c +++ b/arch/powerpc/kernel/power6-pmu.c | |||
@@ -487,8 +487,8 @@ static int power6_generic_events[] = { | |||
487 | */ | 487 | */ |
488 | static int power6_cache_events[C(MAX)][C(OP_MAX)][C(RESULT_MAX)] = { | 488 | static int power6_cache_events[C(MAX)][C(OP_MAX)][C(RESULT_MAX)] = { |
489 | [C(L1D)] = { /* RESULT_ACCESS RESULT_MISS */ | 489 | [C(L1D)] = { /* RESULT_ACCESS RESULT_MISS */ |
490 | [C(OP_READ)] = { 0x80082, 0x80080 }, | 490 | [C(OP_READ)] = { 0x280030, 0x80080 }, |
491 | [C(OP_WRITE)] = { 0x80086, 0x80088 }, | 491 | [C(OP_WRITE)] = { 0x180032, 0x80088 }, |
492 | [C(OP_PREFETCH)] = { 0x810a4, 0 }, | 492 | [C(OP_PREFETCH)] = { 0x810a4, 0 }, |
493 | }, | 493 | }, |
494 | [C(L1I)] = { /* RESULT_ACCESS RESULT_MISS */ | 494 | [C(L1I)] = { /* RESULT_ACCESS RESULT_MISS */ |
diff --git a/arch/powerpc/kernel/power7-pmu.c b/arch/powerpc/kernel/power7-pmu.c index de83d6060dda..1251e4d7e262 100644 --- a/arch/powerpc/kernel/power7-pmu.c +++ b/arch/powerpc/kernel/power7-pmu.c | |||
@@ -297,6 +297,8 @@ static void power7_disable_pmc(unsigned int pmc, unsigned long mmcr[]) | |||
297 | 297 | ||
298 | static int power7_generic_events[] = { | 298 | static int power7_generic_events[] = { |
299 | [PERF_COUNT_HW_CPU_CYCLES] = 0x1e, | 299 | [PERF_COUNT_HW_CPU_CYCLES] = 0x1e, |
300 | [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = 0x100f8, /* GCT_NOSLOT_CYC */ | ||
301 | [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = 0x4000a, /* CMPLU_STALL */ | ||
300 | [PERF_COUNT_HW_INSTRUCTIONS] = 2, | 302 | [PERF_COUNT_HW_INSTRUCTIONS] = 2, |
301 | [PERF_COUNT_HW_CACHE_REFERENCES] = 0xc880, /* LD_REF_L1_LSU*/ | 303 | [PERF_COUNT_HW_CACHE_REFERENCES] = 0xc880, /* LD_REF_L1_LSU*/ |
302 | [PERF_COUNT_HW_CACHE_MISSES] = 0x400f0, /* LD_MISS_L1 */ | 304 | [PERF_COUNT_HW_CACHE_MISSES] = 0x400f0, /* LD_MISS_L1 */ |
diff --git a/arch/powerpc/kernel/ppc_ksyms.c b/arch/powerpc/kernel/ppc_ksyms.c index f5ae872a2ef0..d3114a71dd32 100644 --- a/arch/powerpc/kernel/ppc_ksyms.c +++ b/arch/powerpc/kernel/ppc_ksyms.c | |||
@@ -1,4 +1,4 @@ | |||
1 | #include <linux/module.h> | 1 | #include <linux/export.h> |
2 | #include <linux/threads.h> | 2 | #include <linux/threads.h> |
3 | #include <linux/smp.h> | 3 | #include <linux/smp.h> |
4 | #include <linux/sched.h> | 4 | #include <linux/sched.h> |
diff --git a/arch/powerpc/kernel/process.c b/arch/powerpc/kernel/process.c index 8f53954e75a3..9054ca9ab4f9 100644 --- a/arch/powerpc/kernel/process.c +++ b/arch/powerpc/kernel/process.c | |||
@@ -28,7 +28,7 @@ | |||
28 | #include <linux/init.h> | 28 | #include <linux/init.h> |
29 | #include <linux/prctl.h> | 29 | #include <linux/prctl.h> |
30 | #include <linux/init_task.h> | 30 | #include <linux/init_task.h> |
31 | #include <linux/module.h> | 31 | #include <linux/export.h> |
32 | #include <linux/kallsyms.h> | 32 | #include <linux/kallsyms.h> |
33 | #include <linux/mqueue.h> | 33 | #include <linux/mqueue.h> |
34 | #include <linux/hardirq.h> | 34 | #include <linux/hardirq.h> |
diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c index 174e1e96175e..fa1235b0503b 100644 --- a/arch/powerpc/kernel/prom.c +++ b/arch/powerpc/kernel/prom.c | |||
@@ -27,7 +27,7 @@ | |||
27 | #include <linux/delay.h> | 27 | #include <linux/delay.h> |
28 | #include <linux/initrd.h> | 28 | #include <linux/initrd.h> |
29 | #include <linux/bitops.h> | 29 | #include <linux/bitops.h> |
30 | #include <linux/module.h> | 30 | #include <linux/export.h> |
31 | #include <linux/kexec.h> | 31 | #include <linux/kexec.h> |
32 | #include <linux/debugfs.h> | 32 | #include <linux/debugfs.h> |
33 | #include <linux/irq.h> | 33 | #include <linux/irq.h> |
@@ -54,6 +54,8 @@ | |||
54 | #include <asm/pci-bridge.h> | 54 | #include <asm/pci-bridge.h> |
55 | #include <asm/phyp_dump.h> | 55 | #include <asm/phyp_dump.h> |
56 | #include <asm/kexec.h> | 56 | #include <asm/kexec.h> |
57 | #include <asm/opal.h> | ||
58 | |||
57 | #include <mm/mmu_decl.h> | 59 | #include <mm/mmu_decl.h> |
58 | 60 | ||
59 | #ifdef DEBUG | 61 | #ifdef DEBUG |
@@ -707,11 +709,23 @@ void __init early_init_devtree(void *params) | |||
707 | of_scan_flat_dt(early_init_dt_scan_rtas, NULL); | 709 | of_scan_flat_dt(early_init_dt_scan_rtas, NULL); |
708 | #endif | 710 | #endif |
709 | 711 | ||
712 | #ifdef CONFIG_PPC_POWERNV | ||
713 | /* Some machines might need OPAL info for debugging, grab it now. */ | ||
714 | of_scan_flat_dt(early_init_dt_scan_opal, NULL); | ||
715 | #endif | ||
716 | |||
710 | #ifdef CONFIG_PHYP_DUMP | 717 | #ifdef CONFIG_PHYP_DUMP |
711 | /* scan tree to see if dump occurred during last boot */ | 718 | /* scan tree to see if dump occurred during last boot */ |
712 | of_scan_flat_dt(early_init_dt_scan_phyp_dump, NULL); | 719 | of_scan_flat_dt(early_init_dt_scan_phyp_dump, NULL); |
713 | #endif | 720 | #endif |
714 | 721 | ||
722 | /* Pre-initialize the cmd_line with the content of boot_commmand_line, | ||
723 | * which will be empty except when the content of the variable has | ||
724 | * been overriden by a bootloading mechanism. This happens typically | ||
725 | * with HAL takeover | ||
726 | */ | ||
727 | strlcpy(cmd_line, boot_command_line, COMMAND_LINE_SIZE); | ||
728 | |||
715 | /* Retrieve various informations from the /chosen node of the | 729 | /* Retrieve various informations from the /chosen node of the |
716 | * device-tree, including the platform type, initrd location and | 730 | * device-tree, including the platform type, initrd location and |
717 | * size, TCE reserve, and more ... | 731 | * size, TCE reserve, and more ... |
@@ -723,12 +737,15 @@ void __init early_init_devtree(void *params) | |||
723 | 737 | ||
724 | of_scan_flat_dt(early_init_dt_scan_root, NULL); | 738 | of_scan_flat_dt(early_init_dt_scan_root, NULL); |
725 | of_scan_flat_dt(early_init_dt_scan_memory_ppc, NULL); | 739 | of_scan_flat_dt(early_init_dt_scan_memory_ppc, NULL); |
726 | setup_initial_memory_limit(memstart_addr, first_memblock_size); | ||
727 | 740 | ||
728 | /* Save command line for /proc/cmdline and then parse parameters */ | 741 | /* Save command line for /proc/cmdline and then parse parameters */ |
729 | strlcpy(boot_command_line, cmd_line, COMMAND_LINE_SIZE); | 742 | strlcpy(boot_command_line, cmd_line, COMMAND_LINE_SIZE); |
730 | parse_early_param(); | 743 | parse_early_param(); |
731 | 744 | ||
745 | /* make sure we've parsed cmdline for mem= before this */ | ||
746 | if (memory_limit) | ||
747 | first_memblock_size = min(first_memblock_size, memory_limit); | ||
748 | setup_initial_memory_limit(memstart_addr, first_memblock_size); | ||
732 | /* Reserve MEMBLOCK regions used by kernel, initrd, dt, etc... */ | 749 | /* Reserve MEMBLOCK regions used by kernel, initrd, dt, etc... */ |
733 | memblock_reserve(PHYSICAL_START, __pa(klimit) - PHYSICAL_START); | 750 | memblock_reserve(PHYSICAL_START, __pa(klimit) - PHYSICAL_START); |
734 | /* If relocatable, reserve first 32k for interrupt vectors etc. */ | 751 | /* If relocatable, reserve first 32k for interrupt vectors etc. */ |
diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c index a909f4e9343b..b4fa66127495 100644 --- a/arch/powerpc/kernel/prom_init.c +++ b/arch/powerpc/kernel/prom_init.c | |||
@@ -43,6 +43,7 @@ | |||
43 | #include <asm/btext.h> | 43 | #include <asm/btext.h> |
44 | #include <asm/sections.h> | 44 | #include <asm/sections.h> |
45 | #include <asm/machdep.h> | 45 | #include <asm/machdep.h> |
46 | #include <asm/opal.h> | ||
46 | 47 | ||
47 | #include <linux/linux_logo.h> | 48 | #include <linux/linux_logo.h> |
48 | 49 | ||
@@ -139,7 +140,9 @@ struct mem_map_entry { | |||
139 | 140 | ||
140 | typedef u32 cell_t; | 141 | typedef u32 cell_t; |
141 | 142 | ||
142 | extern void __start(unsigned long r3, unsigned long r4, unsigned long r5); | 143 | extern void __start(unsigned long r3, unsigned long r4, unsigned long r5, |
144 | unsigned long r6, unsigned long r7, unsigned long r8, | ||
145 | unsigned long r9); | ||
143 | 146 | ||
144 | #ifdef CONFIG_PPC64 | 147 | #ifdef CONFIG_PPC64 |
145 | extern int enter_prom(struct prom_args *args, unsigned long entry); | 148 | extern int enter_prom(struct prom_args *args, unsigned long entry); |
@@ -185,6 +188,7 @@ static unsigned long __initdata prom_tce_alloc_end; | |||
185 | #define PLATFORM_LPAR 0x0001 | 188 | #define PLATFORM_LPAR 0x0001 |
186 | #define PLATFORM_POWERMAC 0x0400 | 189 | #define PLATFORM_POWERMAC 0x0400 |
187 | #define PLATFORM_GENERIC 0x0500 | 190 | #define PLATFORM_GENERIC 0x0500 |
191 | #define PLATFORM_OPAL 0x0600 | ||
188 | 192 | ||
189 | static int __initdata of_platform; | 193 | static int __initdata of_platform; |
190 | 194 | ||
@@ -644,7 +648,7 @@ static void __init early_cmdline_parse(void) | |||
644 | } | 648 | } |
645 | } | 649 | } |
646 | 650 | ||
647 | #ifdef CONFIG_PPC_PSERIES | 651 | #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) |
648 | /* | 652 | /* |
649 | * There are two methods for telling firmware what our capabilities are. | 653 | * There are two methods for telling firmware what our capabilities are. |
650 | * Newer machines have an "ibm,client-architecture-support" method on the | 654 | * Newer machines have an "ibm,client-architecture-support" method on the |
@@ -1274,6 +1278,284 @@ static void __init prom_init_mem(void) | |||
1274 | prom_printf(" ram_top : %x\n", RELOC(ram_top)); | 1278 | prom_printf(" ram_top : %x\n", RELOC(ram_top)); |
1275 | } | 1279 | } |
1276 | 1280 | ||
1281 | static void __init prom_close_stdin(void) | ||
1282 | { | ||
1283 | struct prom_t *_prom = &RELOC(prom); | ||
1284 | ihandle val; | ||
1285 | |||
1286 | if (prom_getprop(_prom->chosen, "stdin", &val, sizeof(val)) > 0) | ||
1287 | call_prom("close", 1, 0, val); | ||
1288 | } | ||
1289 | |||
1290 | #ifdef CONFIG_PPC_POWERNV | ||
1291 | |||
1292 | static u64 __initdata prom_opal_size; | ||
1293 | static u64 __initdata prom_opal_align; | ||
1294 | static int __initdata prom_rtas_start_cpu; | ||
1295 | static u64 __initdata prom_rtas_data; | ||
1296 | static u64 __initdata prom_rtas_entry; | ||
1297 | |||
1298 | #ifdef CONFIG_PPC_EARLY_DEBUG_OPAL | ||
1299 | static u64 __initdata prom_opal_base; | ||
1300 | static u64 __initdata prom_opal_entry; | ||
1301 | #endif | ||
1302 | |||
1303 | /* XXX Don't change this structure without updating opal-takeover.S */ | ||
1304 | static struct opal_secondary_data { | ||
1305 | s64 ack; /* 0 */ | ||
1306 | u64 go; /* 8 */ | ||
1307 | struct opal_takeover_args args; /* 16 */ | ||
1308 | } opal_secondary_data; | ||
1309 | |||
1310 | extern char opal_secondary_entry; | ||
1311 | |||
1312 | static void prom_query_opal(void) | ||
1313 | { | ||
1314 | long rc; | ||
1315 | |||
1316 | /* We must not query for OPAL presence on a machine that | ||
1317 | * supports TNK takeover (970 blades), as this uses the same | ||
1318 | * h-call with different arguments and will crash | ||
1319 | */ | ||
1320 | if (PHANDLE_VALID(call_prom("finddevice", 1, 1, | ||
1321 | ADDR("/tnk-memory-map")))) { | ||
1322 | prom_printf("TNK takeover detected, skipping OPAL check\n"); | ||
1323 | return; | ||
1324 | } | ||
1325 | |||
1326 | prom_printf("Querying for OPAL presence... "); | ||
1327 | rc = opal_query_takeover(&RELOC(prom_opal_size), | ||
1328 | &RELOC(prom_opal_align)); | ||
1329 | prom_debug("(rc = %ld) ", rc); | ||
1330 | if (rc != 0) { | ||
1331 | prom_printf("not there.\n"); | ||
1332 | return; | ||
1333 | } | ||
1334 | RELOC(of_platform) = PLATFORM_OPAL; | ||
1335 | prom_printf(" there !\n"); | ||
1336 | prom_debug(" opal_size = 0x%lx\n", RELOC(prom_opal_size)); | ||
1337 | prom_debug(" opal_align = 0x%lx\n", RELOC(prom_opal_align)); | ||
1338 | if (RELOC(prom_opal_align) < 0x10000) | ||
1339 | RELOC(prom_opal_align) = 0x10000; | ||
1340 | } | ||
1341 | |||
1342 | static int prom_rtas_call(int token, int nargs, int nret, int *outputs, ...) | ||
1343 | { | ||
1344 | struct rtas_args rtas_args; | ||
1345 | va_list list; | ||
1346 | int i; | ||
1347 | |||
1348 | rtas_args.token = token; | ||
1349 | rtas_args.nargs = nargs; | ||
1350 | rtas_args.nret = nret; | ||
1351 | rtas_args.rets = (rtas_arg_t *)&(rtas_args.args[nargs]); | ||
1352 | va_start(list, outputs); | ||
1353 | for (i = 0; i < nargs; ++i) | ||
1354 | rtas_args.args[i] = va_arg(list, rtas_arg_t); | ||
1355 | va_end(list); | ||
1356 | |||
1357 | for (i = 0; i < nret; ++i) | ||
1358 | rtas_args.rets[i] = 0; | ||
1359 | |||
1360 | opal_enter_rtas(&rtas_args, RELOC(prom_rtas_data), | ||
1361 | RELOC(prom_rtas_entry)); | ||
1362 | |||
1363 | if (nret > 1 && outputs != NULL) | ||
1364 | for (i = 0; i < nret-1; ++i) | ||
1365 | outputs[i] = rtas_args.rets[i+1]; | ||
1366 | return (nret > 0)? rtas_args.rets[0]: 0; | ||
1367 | } | ||
1368 | |||
1369 | static void __init prom_opal_hold_cpus(void) | ||
1370 | { | ||
1371 | int i, cnt, cpu, rc; | ||
1372 | long j; | ||
1373 | phandle node; | ||
1374 | char type[64]; | ||
1375 | u32 servers[8]; | ||
1376 | struct prom_t *_prom = &RELOC(prom); | ||
1377 | void *entry = (unsigned long *)&RELOC(opal_secondary_entry); | ||
1378 | struct opal_secondary_data *data = &RELOC(opal_secondary_data); | ||
1379 | |||
1380 | prom_debug("prom_opal_hold_cpus: start...\n"); | ||
1381 | prom_debug(" - entry = 0x%x\n", entry); | ||
1382 | prom_debug(" - data = 0x%x\n", data); | ||
1383 | |||
1384 | data->ack = -1; | ||
1385 | data->go = 0; | ||
1386 | |||
1387 | /* look for cpus */ | ||
1388 | for (node = 0; prom_next_node(&node); ) { | ||
1389 | type[0] = 0; | ||
1390 | prom_getprop(node, "device_type", type, sizeof(type)); | ||
1391 | if (strcmp(type, RELOC("cpu")) != 0) | ||
1392 | continue; | ||
1393 | |||
1394 | /* Skip non-configured cpus. */ | ||
1395 | if (prom_getprop(node, "status", type, sizeof(type)) > 0) | ||
1396 | if (strcmp(type, RELOC("okay")) != 0) | ||
1397 | continue; | ||
1398 | |||
1399 | cnt = prom_getprop(node, "ibm,ppc-interrupt-server#s", servers, | ||
1400 | sizeof(servers)); | ||
1401 | if (cnt == PROM_ERROR) | ||
1402 | break; | ||
1403 | cnt >>= 2; | ||
1404 | for (i = 0; i < cnt; i++) { | ||
1405 | cpu = servers[i]; | ||
1406 | prom_debug("CPU %d ... ", cpu); | ||
1407 | if (cpu == _prom->cpu) { | ||
1408 | prom_debug("booted !\n"); | ||
1409 | continue; | ||
1410 | } | ||
1411 | prom_debug("starting ... "); | ||
1412 | |||
1413 | /* Init the acknowledge var which will be reset by | ||
1414 | * the secondary cpu when it awakens from its OF | ||
1415 | * spinloop. | ||
1416 | */ | ||
1417 | data->ack = -1; | ||
1418 | rc = prom_rtas_call(RELOC(prom_rtas_start_cpu), 3, 1, | ||
1419 | NULL, cpu, entry, data); | ||
1420 | prom_debug("rtas rc=%d ...", rc); | ||
1421 | |||
1422 | for (j = 0; j < 100000000 && data->ack == -1; j++) { | ||
1423 | HMT_low(); | ||
1424 | mb(); | ||
1425 | } | ||
1426 | HMT_medium(); | ||
1427 | if (data->ack != -1) | ||
1428 | prom_debug("done, PIR=0x%x\n", data->ack); | ||
1429 | else | ||
1430 | prom_debug("timeout !\n"); | ||
1431 | } | ||
1432 | } | ||
1433 | prom_debug("prom_opal_hold_cpus: end...\n"); | ||
1434 | } | ||
1435 | |||
1436 | static void prom_opal_takeover(void) | ||
1437 | { | ||
1438 | struct opal_secondary_data *data = &RELOC(opal_secondary_data); | ||
1439 | struct opal_takeover_args *args = &data->args; | ||
1440 | u64 align = RELOC(prom_opal_align); | ||
1441 | u64 top_addr, opal_addr; | ||
1442 | |||
1443 | args->k_image = (u64)RELOC(_stext); | ||
1444 | args->k_size = _end - _stext; | ||
1445 | args->k_entry = 0; | ||
1446 | args->k_entry2 = 0x60; | ||
1447 | |||
1448 | top_addr = _ALIGN_UP(args->k_size, align); | ||
1449 | |||
1450 | if (RELOC(prom_initrd_start) != 0) { | ||
1451 | args->rd_image = RELOC(prom_initrd_start); | ||
1452 | args->rd_size = RELOC(prom_initrd_end) - args->rd_image; | ||
1453 | args->rd_loc = top_addr; | ||
1454 | top_addr = _ALIGN_UP(args->rd_loc + args->rd_size, align); | ||
1455 | } | ||
1456 | |||
1457 | /* Pickup an address for the HAL. We want to go really high | ||
1458 | * up to avoid problem with future kexecs. On the other hand | ||
1459 | * we don't want to be all over the TCEs on P5IOC2 machines | ||
1460 | * which are going to be up there too. We assume the machine | ||
1461 | * has plenty of memory, and we ask for the HAL for now to | ||
1462 | * be just below the 1G point, or above the initrd | ||
1463 | */ | ||
1464 | opal_addr = _ALIGN_DOWN(0x40000000 - RELOC(prom_opal_size), align); | ||
1465 | if (opal_addr < top_addr) | ||
1466 | opal_addr = top_addr; | ||
1467 | args->hal_addr = opal_addr; | ||
1468 | |||
1469 | /* Copy the command line to the kernel image */ | ||
1470 | strlcpy(RELOC(boot_command_line), RELOC(prom_cmd_line), | ||
1471 | COMMAND_LINE_SIZE); | ||
1472 | |||
1473 | prom_debug(" k_image = 0x%lx\n", args->k_image); | ||
1474 | prom_debug(" k_size = 0x%lx\n", args->k_size); | ||
1475 | prom_debug(" k_entry = 0x%lx\n", args->k_entry); | ||
1476 | prom_debug(" k_entry2 = 0x%lx\n", args->k_entry2); | ||
1477 | prom_debug(" hal_addr = 0x%lx\n", args->hal_addr); | ||
1478 | prom_debug(" rd_image = 0x%lx\n", args->rd_image); | ||
1479 | prom_debug(" rd_size = 0x%lx\n", args->rd_size); | ||
1480 | prom_debug(" rd_loc = 0x%lx\n", args->rd_loc); | ||
1481 | prom_printf("Performing OPAL takeover,this can take a few minutes..\n"); | ||
1482 | prom_close_stdin(); | ||
1483 | mb(); | ||
1484 | data->go = 1; | ||
1485 | for (;;) | ||
1486 | opal_do_takeover(args); | ||
1487 | } | ||
1488 | |||
1489 | /* | ||
1490 | * Allocate room for and instantiate OPAL | ||
1491 | */ | ||
1492 | static void __init prom_instantiate_opal(void) | ||
1493 | { | ||
1494 | phandle opal_node; | ||
1495 | ihandle opal_inst; | ||
1496 | u64 base, entry; | ||
1497 | u64 size = 0, align = 0x10000; | ||
1498 | u32 rets[2]; | ||
1499 | |||
1500 | prom_debug("prom_instantiate_opal: start...\n"); | ||
1501 | |||
1502 | opal_node = call_prom("finddevice", 1, 1, ADDR("/ibm,opal")); | ||
1503 | prom_debug("opal_node: %x\n", opal_node); | ||
1504 | if (!PHANDLE_VALID(opal_node)) | ||
1505 | return; | ||
1506 | |||
1507 | prom_getprop(opal_node, "opal-runtime-size", &size, sizeof(size)); | ||
1508 | if (size == 0) | ||
1509 | return; | ||
1510 | prom_getprop(opal_node, "opal-runtime-alignment", &align, | ||
1511 | sizeof(align)); | ||
1512 | |||
1513 | base = alloc_down(size, align, 0); | ||
1514 | if (base == 0) { | ||
1515 | prom_printf("OPAL allocation failed !\n"); | ||
1516 | return; | ||
1517 | } | ||
1518 | |||
1519 | opal_inst = call_prom("open", 1, 1, ADDR("/ibm,opal")); | ||
1520 | if (!IHANDLE_VALID(opal_inst)) { | ||
1521 | prom_printf("opening opal package failed (%x)\n", opal_inst); | ||
1522 | return; | ||
1523 | } | ||
1524 | |||
1525 | prom_printf("instantiating opal at 0x%x...", base); | ||
1526 | |||
1527 | if (call_prom_ret("call-method", 4, 3, rets, | ||
1528 | ADDR("load-opal-runtime"), | ||
1529 | opal_inst, | ||
1530 | base >> 32, base & 0xffffffff) != 0 | ||
1531 | || (rets[0] == 0 && rets[1] == 0)) { | ||
1532 | prom_printf(" failed\n"); | ||
1533 | return; | ||
1534 | } | ||
1535 | entry = (((u64)rets[0]) << 32) | rets[1]; | ||
1536 | |||
1537 | prom_printf(" done\n"); | ||
1538 | |||
1539 | reserve_mem(base, size); | ||
1540 | |||
1541 | prom_debug("opal base = 0x%x\n", base); | ||
1542 | prom_debug("opal align = 0x%x\n", align); | ||
1543 | prom_debug("opal entry = 0x%x\n", entry); | ||
1544 | prom_debug("opal size = 0x%x\n", (long)size); | ||
1545 | |||
1546 | prom_setprop(opal_node, "/ibm,opal", "opal-base-address", | ||
1547 | &base, sizeof(base)); | ||
1548 | prom_setprop(opal_node, "/ibm,opal", "opal-entry-address", | ||
1549 | &entry, sizeof(entry)); | ||
1550 | |||
1551 | #ifdef CONFIG_PPC_EARLY_DEBUG_OPAL | ||
1552 | RELOC(prom_opal_base) = base; | ||
1553 | RELOC(prom_opal_entry) = entry; | ||
1554 | #endif | ||
1555 | prom_debug("prom_instantiate_opal: end...\n"); | ||
1556 | } | ||
1557 | |||
1558 | #endif /* CONFIG_PPC_POWERNV */ | ||
1277 | 1559 | ||
1278 | /* | 1560 | /* |
1279 | * Allocate room for and instantiate RTAS | 1561 | * Allocate room for and instantiate RTAS |
@@ -1326,6 +1608,12 @@ static void __init prom_instantiate_rtas(void) | |||
1326 | prom_setprop(rtas_node, "/rtas", "linux,rtas-entry", | 1608 | prom_setprop(rtas_node, "/rtas", "linux,rtas-entry", |
1327 | &entry, sizeof(entry)); | 1609 | &entry, sizeof(entry)); |
1328 | 1610 | ||
1611 | #ifdef CONFIG_PPC_POWERNV | ||
1612 | /* PowerVN takeover hack */ | ||
1613 | RELOC(prom_rtas_data) = base; | ||
1614 | RELOC(prom_rtas_entry) = entry; | ||
1615 | prom_getprop(rtas_node, "start-cpu", &RELOC(prom_rtas_start_cpu), 4); | ||
1616 | #endif | ||
1329 | prom_debug("rtas base = 0x%x\n", base); | 1617 | prom_debug("rtas base = 0x%x\n", base); |
1330 | prom_debug("rtas entry = 0x%x\n", entry); | 1618 | prom_debug("rtas entry = 0x%x\n", entry); |
1331 | prom_debug("rtas size = 0x%x\n", (long)size); | 1619 | prom_debug("rtas size = 0x%x\n", (long)size); |
@@ -1543,7 +1831,7 @@ static void __init prom_hold_cpus(void) | |||
1543 | *acknowledge = (unsigned long)-1; | 1831 | *acknowledge = (unsigned long)-1; |
1544 | 1832 | ||
1545 | if (reg != _prom->cpu) { | 1833 | if (reg != _prom->cpu) { |
1546 | /* Primary Thread of non-boot cpu */ | 1834 | /* Primary Thread of non-boot cpu or any thread */ |
1547 | prom_printf("starting cpu hw idx %lu... ", reg); | 1835 | prom_printf("starting cpu hw idx %lu... ", reg); |
1548 | call_prom("start-cpu", 3, 0, node, | 1836 | call_prom("start-cpu", 3, 0, node, |
1549 | secondary_hold, reg); | 1837 | secondary_hold, reg); |
@@ -1652,15 +1940,6 @@ static void __init prom_init_stdout(void) | |||
1652 | prom_setprop(val, path, "linux,boot-display", NULL, 0); | 1940 | prom_setprop(val, path, "linux,boot-display", NULL, 0); |
1653 | } | 1941 | } |
1654 | 1942 | ||
1655 | static void __init prom_close_stdin(void) | ||
1656 | { | ||
1657 | struct prom_t *_prom = &RELOC(prom); | ||
1658 | ihandle val; | ||
1659 | |||
1660 | if (prom_getprop(_prom->chosen, "stdin", &val, sizeof(val)) > 0) | ||
1661 | call_prom("close", 1, 0, val); | ||
1662 | } | ||
1663 | |||
1664 | static int __init prom_find_machine_type(void) | 1943 | static int __init prom_find_machine_type(void) |
1665 | { | 1944 | { |
1666 | struct prom_t *_prom = &RELOC(prom); | 1945 | struct prom_t *_prom = &RELOC(prom); |
@@ -1671,7 +1950,7 @@ static int __init prom_find_machine_type(void) | |||
1671 | int x; | 1950 | int x; |
1672 | #endif | 1951 | #endif |
1673 | 1952 | ||
1674 | /* Look for a PowerMac */ | 1953 | /* Look for a PowerMac or a Cell */ |
1675 | len = prom_getprop(_prom->root, "compatible", | 1954 | len = prom_getprop(_prom->root, "compatible", |
1676 | compat, sizeof(compat)-1); | 1955 | compat, sizeof(compat)-1); |
1677 | if (len > 0) { | 1956 | if (len > 0) { |
@@ -1697,7 +1976,11 @@ static int __init prom_find_machine_type(void) | |||
1697 | } | 1976 | } |
1698 | } | 1977 | } |
1699 | #ifdef CONFIG_PPC64 | 1978 | #ifdef CONFIG_PPC64 |
1700 | /* If not a mac, try to figure out if it's an IBM pSeries or any other | 1979 | /* Try to detect OPAL */ |
1980 | if (PHANDLE_VALID(call_prom("finddevice", 1, 1, ADDR("/ibm,opal")))) | ||
1981 | return PLATFORM_OPAL; | ||
1982 | |||
1983 | /* Try to figure out if it's an IBM pSeries or any other | ||
1701 | * PAPR compliant platform. We assume it is if : | 1984 | * PAPR compliant platform. We assume it is if : |
1702 | * - /device_type is "chrp" (please, do NOT use that for future | 1985 | * - /device_type is "chrp" (please, do NOT use that for future |
1703 | * non-IBM designs ! | 1986 | * non-IBM designs ! |
@@ -1924,7 +2207,7 @@ static void __init scan_dt_build_struct(phandle node, unsigned long *mem_start, | |||
1924 | unsigned long soff; | 2207 | unsigned long soff; |
1925 | unsigned char *valp; | 2208 | unsigned char *valp; |
1926 | static char pname[MAX_PROPERTY_NAME]; | 2209 | static char pname[MAX_PROPERTY_NAME]; |
1927 | int l, room; | 2210 | int l, room, has_phandle = 0; |
1928 | 2211 | ||
1929 | dt_push_token(OF_DT_BEGIN_NODE, mem_start, mem_end); | 2212 | dt_push_token(OF_DT_BEGIN_NODE, mem_start, mem_end); |
1930 | 2213 | ||
@@ -2008,19 +2291,26 @@ static void __init scan_dt_build_struct(phandle node, unsigned long *mem_start, | |||
2008 | valp = make_room(mem_start, mem_end, l, 4); | 2291 | valp = make_room(mem_start, mem_end, l, 4); |
2009 | call_prom("getprop", 4, 1, node, RELOC(pname), valp, l); | 2292 | call_prom("getprop", 4, 1, node, RELOC(pname), valp, l); |
2010 | *mem_start = _ALIGN(*mem_start, 4); | 2293 | *mem_start = _ALIGN(*mem_start, 4); |
2294 | |||
2295 | if (!strcmp(RELOC(pname), RELOC("phandle"))) | ||
2296 | has_phandle = 1; | ||
2011 | } | 2297 | } |
2012 | 2298 | ||
2013 | /* Add a "linux,phandle" property. */ | 2299 | /* Add a "linux,phandle" property if no "phandle" property already |
2014 | soff = dt_find_string(RELOC("linux,phandle")); | 2300 | * existed (can happen with OPAL) |
2015 | if (soff == 0) | 2301 | */ |
2016 | prom_printf("WARNING: Can't find string index for" | 2302 | if (!has_phandle) { |
2017 | " <linux-phandle> node %s\n", path); | 2303 | soff = dt_find_string(RELOC("linux,phandle")); |
2018 | else { | 2304 | if (soff == 0) |
2019 | dt_push_token(OF_DT_PROP, mem_start, mem_end); | 2305 | prom_printf("WARNING: Can't find string index for" |
2020 | dt_push_token(4, mem_start, mem_end); | 2306 | " <linux-phandle> node %s\n", path); |
2021 | dt_push_token(soff, mem_start, mem_end); | 2307 | else { |
2022 | valp = make_room(mem_start, mem_end, 4, 4); | 2308 | dt_push_token(OF_DT_PROP, mem_start, mem_end); |
2023 | *(u32 *)valp = node; | 2309 | dt_push_token(4, mem_start, mem_end); |
2310 | dt_push_token(soff, mem_start, mem_end); | ||
2311 | valp = make_room(mem_start, mem_end, 4, 4); | ||
2312 | *(u32 *)valp = node; | ||
2313 | } | ||
2024 | } | 2314 | } |
2025 | 2315 | ||
2026 | /* do all our children */ | 2316 | /* do all our children */ |
@@ -2504,6 +2794,7 @@ static void __init prom_check_initrd(unsigned long r3, unsigned long r4) | |||
2504 | #endif /* CONFIG_BLK_DEV_INITRD */ | 2794 | #endif /* CONFIG_BLK_DEV_INITRD */ |
2505 | } | 2795 | } |
2506 | 2796 | ||
2797 | |||
2507 | /* | 2798 | /* |
2508 | * We enter here early on, when the Open Firmware prom is still | 2799 | * We enter here early on, when the Open Firmware prom is still |
2509 | * handling exceptions and the MMU hash table for us. | 2800 | * handling exceptions and the MMU hash table for us. |
@@ -2553,6 +2844,7 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4, | |||
2553 | * between pSeries SMP and pSeries LPAR | 2844 | * between pSeries SMP and pSeries LPAR |
2554 | */ | 2845 | */ |
2555 | RELOC(of_platform) = prom_find_machine_type(); | 2846 | RELOC(of_platform) = prom_find_machine_type(); |
2847 | prom_printf("Detected machine type: %x\n", RELOC(of_platform)); | ||
2556 | 2848 | ||
2557 | #ifndef CONFIG_RELOCATABLE | 2849 | #ifndef CONFIG_RELOCATABLE |
2558 | /* Bail if this is a kdump kernel. */ | 2850 | /* Bail if this is a kdump kernel. */ |
@@ -2565,7 +2857,7 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4, | |||
2565 | */ | 2857 | */ |
2566 | prom_check_initrd(r3, r4); | 2858 | prom_check_initrd(r3, r4); |
2567 | 2859 | ||
2568 | #ifdef CONFIG_PPC_PSERIES | 2860 | #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) |
2569 | /* | 2861 | /* |
2570 | * On pSeries, inform the firmware about our capabilities | 2862 | * On pSeries, inform the firmware about our capabilities |
2571 | */ | 2863 | */ |
@@ -2611,14 +2903,33 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4, | |||
2611 | #endif | 2903 | #endif |
2612 | 2904 | ||
2613 | /* | 2905 | /* |
2614 | * On non-powermacs, try to instantiate RTAS and puts all CPUs | 2906 | * On non-powermacs, try to instantiate RTAS. PowerMacs don't |
2615 | * in spin-loops. PowerMacs don't have a working RTAS and use | 2907 | * have a usable RTAS implementation. |
2616 | * a different way to spin CPUs | ||
2617 | */ | 2908 | */ |
2618 | if (RELOC(of_platform) != PLATFORM_POWERMAC) { | 2909 | if (RELOC(of_platform) != PLATFORM_POWERMAC && |
2910 | RELOC(of_platform) != PLATFORM_OPAL) | ||
2619 | prom_instantiate_rtas(); | 2911 | prom_instantiate_rtas(); |
2912 | |||
2913 | #ifdef CONFIG_PPC_POWERNV | ||
2914 | /* Detect HAL and try instanciating it & doing takeover */ | ||
2915 | if (RELOC(of_platform) == PLATFORM_PSERIES_LPAR) { | ||
2916 | prom_query_opal(); | ||
2917 | if (RELOC(of_platform) == PLATFORM_OPAL) { | ||
2918 | prom_opal_hold_cpus(); | ||
2919 | prom_opal_takeover(); | ||
2920 | } | ||
2921 | } else if (RELOC(of_platform) == PLATFORM_OPAL) | ||
2922 | prom_instantiate_opal(); | ||
2923 | #endif | ||
2924 | |||
2925 | /* | ||
2926 | * On non-powermacs, put all CPUs in spin-loops. | ||
2927 | * | ||
2928 | * PowerMacs use a different mechanism to spin CPUs | ||
2929 | */ | ||
2930 | if (RELOC(of_platform) != PLATFORM_POWERMAC && | ||
2931 | RELOC(of_platform) != PLATFORM_OPAL) | ||
2620 | prom_hold_cpus(); | 2932 | prom_hold_cpus(); |
2621 | } | ||
2622 | 2933 | ||
2623 | /* | 2934 | /* |
2624 | * Fill in some infos for use by the kernel later on | 2935 | * Fill in some infos for use by the kernel later on |
@@ -2685,7 +2996,13 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4, | |||
2685 | reloc_got2(-offset); | 2996 | reloc_got2(-offset); |
2686 | #endif | 2997 | #endif |
2687 | 2998 | ||
2688 | __start(hdr, kbase, 0); | 2999 | #ifdef CONFIG_PPC_EARLY_DEBUG_OPAL |
3000 | /* OPAL early debug gets the OPAL base & entry in r8 and r9 */ | ||
3001 | __start(hdr, kbase, 0, 0, 0, | ||
3002 | RELOC(prom_opal_base), RELOC(prom_opal_entry)); | ||
3003 | #else | ||
3004 | __start(hdr, kbase, 0, 0, 0, 0, 0); | ||
3005 | #endif | ||
2689 | 3006 | ||
2690 | return 0; | 3007 | return 0; |
2691 | } | 3008 | } |
diff --git a/arch/powerpc/kernel/prom_init_check.sh b/arch/powerpc/kernel/prom_init_check.sh index 9f82f4937892..70f4286eaa7a 100644 --- a/arch/powerpc/kernel/prom_init_check.sh +++ b/arch/powerpc/kernel/prom_init_check.sh | |||
@@ -20,7 +20,9 @@ WHITELIST="add_reloc_offset __bss_start __bss_stop copy_and_flush | |||
20 | _end enter_prom memcpy memset reloc_offset __secondary_hold | 20 | _end enter_prom memcpy memset reloc_offset __secondary_hold |
21 | __secondary_hold_acknowledge __secondary_hold_spinloop __start | 21 | __secondary_hold_acknowledge __secondary_hold_spinloop __start |
22 | strcmp strcpy strlcpy strlen strncmp strstr logo_linux_clut224 | 22 | strcmp strcpy strlcpy strlen strncmp strstr logo_linux_clut224 |
23 | reloc_got2 kernstart_addr memstart_addr linux_banner" | 23 | reloc_got2 kernstart_addr memstart_addr linux_banner _stext |
24 | opal_query_takeover opal_do_takeover opal_enter_rtas opal_secondary_entry | ||
25 | boot_command_line" | ||
24 | 26 | ||
25 | NM="$1" | 27 | NM="$1" |
26 | OBJ="$2" | 28 | OBJ="$2" |
diff --git a/arch/powerpc/kernel/prom_parse.c b/arch/powerpc/kernel/prom_parse.c index 47187cc2cf00..4e1331b8eb33 100644 --- a/arch/powerpc/kernel/prom_parse.c +++ b/arch/powerpc/kernel/prom_parse.c | |||
@@ -2,7 +2,6 @@ | |||
2 | 2 | ||
3 | #include <linux/kernel.h> | 3 | #include <linux/kernel.h> |
4 | #include <linux/string.h> | 4 | #include <linux/string.h> |
5 | #include <linux/module.h> | ||
6 | #include <linux/ioport.h> | 5 | #include <linux/ioport.h> |
7 | #include <linux/etherdevice.h> | 6 | #include <linux/etherdevice.h> |
8 | #include <linux/of_address.h> | 7 | #include <linux/of_address.h> |
diff --git a/arch/powerpc/kernel/ptrace.c b/arch/powerpc/kernel/ptrace.c index 05b7dd217f60..5de73dbd15c7 100644 --- a/arch/powerpc/kernel/ptrace.c +++ b/arch/powerpc/kernel/ptrace.c | |||
@@ -30,9 +30,6 @@ | |||
30 | #include <linux/seccomp.h> | 30 | #include <linux/seccomp.h> |
31 | #include <linux/audit.h> | 31 | #include <linux/audit.h> |
32 | #include <trace/syscall.h> | 32 | #include <trace/syscall.h> |
33 | #ifdef CONFIG_PPC32 | ||
34 | #include <linux/module.h> | ||
35 | #endif | ||
36 | #include <linux/hw_breakpoint.h> | 33 | #include <linux/hw_breakpoint.h> |
37 | #include <linux/perf_event.h> | 34 | #include <linux/perf_event.h> |
38 | 35 | ||
@@ -1497,9 +1494,14 @@ long arch_ptrace(struct task_struct *child, long request, | |||
1497 | if (index < PT_FPR0) { | 1494 | if (index < PT_FPR0) { |
1498 | tmp = ptrace_get_reg(child, (int) index); | 1495 | tmp = ptrace_get_reg(child, (int) index); |
1499 | } else { | 1496 | } else { |
1497 | unsigned int fpidx = index - PT_FPR0; | ||
1498 | |||
1500 | flush_fp_to_thread(child); | 1499 | flush_fp_to_thread(child); |
1501 | tmp = ((unsigned long *)child->thread.fpr) | 1500 | if (fpidx < (PT_FPSCR - PT_FPR0)) |
1502 | [TS_FPRWIDTH * (index - PT_FPR0)]; | 1501 | tmp = ((unsigned long *)child->thread.fpr) |
1502 | [fpidx * TS_FPRWIDTH]; | ||
1503 | else | ||
1504 | tmp = child->thread.fpscr.val; | ||
1503 | } | 1505 | } |
1504 | ret = put_user(tmp, datalp); | 1506 | ret = put_user(tmp, datalp); |
1505 | break; | 1507 | break; |
@@ -1525,9 +1527,14 @@ long arch_ptrace(struct task_struct *child, long request, | |||
1525 | if (index < PT_FPR0) { | 1527 | if (index < PT_FPR0) { |
1526 | ret = ptrace_put_reg(child, index, data); | 1528 | ret = ptrace_put_reg(child, index, data); |
1527 | } else { | 1529 | } else { |
1530 | unsigned int fpidx = index - PT_FPR0; | ||
1531 | |||
1528 | flush_fp_to_thread(child); | 1532 | flush_fp_to_thread(child); |
1529 | ((unsigned long *)child->thread.fpr) | 1533 | if (fpidx < (PT_FPSCR - PT_FPR0)) |
1530 | [TS_FPRWIDTH * (index - PT_FPR0)] = data; | 1534 | ((unsigned long *)child->thread.fpr) |
1535 | [fpidx * TS_FPRWIDTH] = data; | ||
1536 | else | ||
1537 | child->thread.fpscr.val = data; | ||
1531 | ret = 0; | 1538 | ret = 0; |
1532 | } | 1539 | } |
1533 | break; | 1540 | break; |
diff --git a/arch/powerpc/kernel/rtas.c b/arch/powerpc/kernel/rtas.c index d5ca8236315c..517b1d8f455b 100644 --- a/arch/powerpc/kernel/rtas.c +++ b/arch/powerpc/kernel/rtas.c | |||
@@ -15,7 +15,7 @@ | |||
15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
16 | #include <linux/types.h> | 16 | #include <linux/types.h> |
17 | #include <linux/spinlock.h> | 17 | #include <linux/spinlock.h> |
18 | #include <linux/module.h> | 18 | #include <linux/export.h> |
19 | #include <linux/init.h> | 19 | #include <linux/init.h> |
20 | #include <linux/capability.h> | 20 | #include <linux/capability.h> |
21 | #include <linux/delay.h> | 21 | #include <linux/delay.h> |
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c index b1d738d12890..77bb77da05c1 100644 --- a/arch/powerpc/kernel/setup-common.c +++ b/arch/powerpc/kernel/setup-common.c | |||
@@ -12,7 +12,7 @@ | |||
12 | 12 | ||
13 | #undef DEBUG | 13 | #undef DEBUG |
14 | 14 | ||
15 | #include <linux/module.h> | 15 | #include <linux/export.h> |
16 | #include <linux/string.h> | 16 | #include <linux/string.h> |
17 | #include <linux/sched.h> | 17 | #include <linux/sched.h> |
18 | #include <linux/init.h> | 18 | #include <linux/init.h> |
diff --git a/arch/powerpc/kernel/setup_32.c b/arch/powerpc/kernel/setup_32.c index 209135af0a40..c1ce86357ecb 100644 --- a/arch/powerpc/kernel/setup_32.c +++ b/arch/powerpc/kernel/setup_32.c | |||
@@ -117,7 +117,7 @@ notrace unsigned long __init early_init(unsigned long dt_ptr) | |||
117 | * This is called very early on the boot process, after a minimal | 117 | * This is called very early on the boot process, after a minimal |
118 | * MMU environment has been set up but before MMU_init is called. | 118 | * MMU environment has been set up but before MMU_init is called. |
119 | */ | 119 | */ |
120 | notrace void __init machine_init(unsigned long dt_ptr) | 120 | notrace void __init machine_init(u64 dt_ptr) |
121 | { | 121 | { |
122 | lockdep_init(); | 122 | lockdep_init(); |
123 | 123 | ||
diff --git a/arch/powerpc/kernel/setup_64.c b/arch/powerpc/kernel/setup_64.c index aebef1320ed7..1a9dea80a69b 100644 --- a/arch/powerpc/kernel/setup_64.c +++ b/arch/powerpc/kernel/setup_64.c | |||
@@ -12,7 +12,7 @@ | |||
12 | 12 | ||
13 | #undef DEBUG | 13 | #undef DEBUG |
14 | 14 | ||
15 | #include <linux/module.h> | 15 | #include <linux/export.h> |
16 | #include <linux/string.h> | 16 | #include <linux/string.h> |
17 | #include <linux/sched.h> | 17 | #include <linux/sched.h> |
18 | #include <linux/init.h> | 18 | #include <linux/init.h> |
@@ -278,14 +278,14 @@ static void __init initialize_cache_info(void) | |||
278 | 278 | ||
279 | DBG(" -> initialize_cache_info()\n"); | 279 | DBG(" -> initialize_cache_info()\n"); |
280 | 280 | ||
281 | for (np = NULL; (np = of_find_node_by_type(np, "cpu"));) { | 281 | for_each_node_by_type(np, "cpu") { |
282 | num_cpus += 1; | 282 | num_cpus += 1; |
283 | 283 | ||
284 | /* We're assuming *all* of the CPUs have the same | 284 | /* |
285 | * We're assuming *all* of the CPUs have the same | ||
285 | * d-cache and i-cache sizes... -Peter | 286 | * d-cache and i-cache sizes... -Peter |
286 | */ | 287 | */ |
287 | 288 | if (num_cpus == 1) { | |
288 | if ( num_cpus == 1 ) { | ||
289 | const u32 *sizep, *lsizep; | 289 | const u32 *sizep, *lsizep; |
290 | u32 size, lsize; | 290 | u32 size, lsize; |
291 | 291 | ||
@@ -294,10 +294,13 @@ static void __init initialize_cache_info(void) | |||
294 | sizep = of_get_property(np, "d-cache-size", NULL); | 294 | sizep = of_get_property(np, "d-cache-size", NULL); |
295 | if (sizep != NULL) | 295 | if (sizep != NULL) |
296 | size = *sizep; | 296 | size = *sizep; |
297 | lsizep = of_get_property(np, "d-cache-block-size", NULL); | 297 | lsizep = of_get_property(np, "d-cache-block-size", |
298 | NULL); | ||
298 | /* fallback if block size missing */ | 299 | /* fallback if block size missing */ |
299 | if (lsizep == NULL) | 300 | if (lsizep == NULL) |
300 | lsizep = of_get_property(np, "d-cache-line-size", NULL); | 301 | lsizep = of_get_property(np, |
302 | "d-cache-line-size", | ||
303 | NULL); | ||
301 | if (lsizep != NULL) | 304 | if (lsizep != NULL) |
302 | lsize = *lsizep; | 305 | lsize = *lsizep; |
303 | if (sizep == 0 || lsizep == 0) | 306 | if (sizep == 0 || lsizep == 0) |
@@ -314,9 +317,12 @@ static void __init initialize_cache_info(void) | |||
314 | sizep = of_get_property(np, "i-cache-size", NULL); | 317 | sizep = of_get_property(np, "i-cache-size", NULL); |
315 | if (sizep != NULL) | 318 | if (sizep != NULL) |
316 | size = *sizep; | 319 | size = *sizep; |
317 | lsizep = of_get_property(np, "i-cache-block-size", NULL); | 320 | lsizep = of_get_property(np, "i-cache-block-size", |
321 | NULL); | ||
318 | if (lsizep == NULL) | 322 | if (lsizep == NULL) |
319 | lsizep = of_get_property(np, "i-cache-line-size", NULL); | 323 | lsizep = of_get_property(np, |
324 | "i-cache-line-size", | ||
325 | NULL); | ||
320 | if (lsizep != NULL) | 326 | if (lsizep != NULL) |
321 | lsize = *lsizep; | 327 | lsize = *lsizep; |
322 | if (sizep == 0 || lsizep == 0) | 328 | if (sizep == 0 || lsizep == 0) |
diff --git a/arch/powerpc/kernel/signal_64.c b/arch/powerpc/kernel/signal_64.c index e91c736cc842..a50b5ec281dc 100644 --- a/arch/powerpc/kernel/signal_64.c +++ b/arch/powerpc/kernel/signal_64.c | |||
@@ -23,7 +23,6 @@ | |||
23 | #include <linux/stddef.h> | 23 | #include <linux/stddef.h> |
24 | #include <linux/elf.h> | 24 | #include <linux/elf.h> |
25 | #include <linux/ptrace.h> | 25 | #include <linux/ptrace.h> |
26 | #include <linux/module.h> | ||
27 | #include <linux/ratelimit.h> | 26 | #include <linux/ratelimit.h> |
28 | 27 | ||
29 | #include <asm/sigcontext.h> | 28 | #include <asm/sigcontext.h> |
diff --git a/arch/powerpc/kernel/smp.c b/arch/powerpc/kernel/smp.c index 7bf2187dfd99..6df70907d60a 100644 --- a/arch/powerpc/kernel/smp.c +++ b/arch/powerpc/kernel/smp.c | |||
@@ -18,7 +18,7 @@ | |||
18 | #undef DEBUG | 18 | #undef DEBUG |
19 | 19 | ||
20 | #include <linux/kernel.h> | 20 | #include <linux/kernel.h> |
21 | #include <linux/module.h> | 21 | #include <linux/export.h> |
22 | #include <linux/sched.h> | 22 | #include <linux/sched.h> |
23 | #include <linux/smp.h> | 23 | #include <linux/smp.h> |
24 | #include <linux/interrupt.h> | 24 | #include <linux/interrupt.h> |
@@ -70,6 +70,10 @@ | |||
70 | static DEFINE_PER_CPU(struct task_struct *, idle_thread_array); | 70 | static DEFINE_PER_CPU(struct task_struct *, idle_thread_array); |
71 | #define get_idle_for_cpu(x) (per_cpu(idle_thread_array, x)) | 71 | #define get_idle_for_cpu(x) (per_cpu(idle_thread_array, x)) |
72 | #define set_idle_for_cpu(x, p) (per_cpu(idle_thread_array, x) = (p)) | 72 | #define set_idle_for_cpu(x, p) (per_cpu(idle_thread_array, x) = (p)) |
73 | |||
74 | /* State of each CPU during hotplug phases */ | ||
75 | static DEFINE_PER_CPU(int, cpu_state) = { 0 }; | ||
76 | |||
73 | #else | 77 | #else |
74 | static struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ; | 78 | static struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ; |
75 | #define get_idle_for_cpu(x) (idle_thread_array[(x)]) | 79 | #define get_idle_for_cpu(x) (idle_thread_array[(x)]) |
@@ -104,12 +108,25 @@ int __devinit smp_generic_kick_cpu(int nr) | |||
104 | * cpu_start field to become non-zero After we set cpu_start, | 108 | * cpu_start field to become non-zero After we set cpu_start, |
105 | * the processor will continue on to secondary_start | 109 | * the processor will continue on to secondary_start |
106 | */ | 110 | */ |
107 | paca[nr].cpu_start = 1; | 111 | if (!paca[nr].cpu_start) { |
108 | smp_mb(); | 112 | paca[nr].cpu_start = 1; |
113 | smp_mb(); | ||
114 | return 0; | ||
115 | } | ||
116 | |||
117 | #ifdef CONFIG_HOTPLUG_CPU | ||
118 | /* | ||
119 | * Ok it's not there, so it might be soft-unplugged, let's | ||
120 | * try to bring it back | ||
121 | */ | ||
122 | per_cpu(cpu_state, nr) = CPU_UP_PREPARE; | ||
123 | smp_wmb(); | ||
124 | smp_send_reschedule(nr); | ||
125 | #endif /* CONFIG_HOTPLUG_CPU */ | ||
109 | 126 | ||
110 | return 0; | 127 | return 0; |
111 | } | 128 | } |
112 | #endif | 129 | #endif /* CONFIG_PPC64 */ |
113 | 130 | ||
114 | static irqreturn_t call_function_action(int irq, void *data) | 131 | static irqreturn_t call_function_action(int irq, void *data) |
115 | { | 132 | { |
@@ -170,7 +187,7 @@ int smp_request_message_ipi(int virq, int msg) | |||
170 | return 1; | 187 | return 1; |
171 | } | 188 | } |
172 | #endif | 189 | #endif |
173 | err = request_irq(virq, smp_ipi_action[msg], IRQF_DISABLED|IRQF_PERCPU, | 190 | err = request_irq(virq, smp_ipi_action[msg], IRQF_PERCPU, |
174 | smp_ipi_name[msg], 0); | 191 | smp_ipi_name[msg], 0); |
175 | WARN(err < 0, "unable to request_irq %d for %s (rc %d)\n", | 192 | WARN(err < 0, "unable to request_irq %d for %s (rc %d)\n", |
176 | virq, smp_ipi_name[msg], err); | 193 | virq, smp_ipi_name[msg], err); |
@@ -357,8 +374,6 @@ void __devinit smp_prepare_boot_cpu(void) | |||
357 | } | 374 | } |
358 | 375 | ||
359 | #ifdef CONFIG_HOTPLUG_CPU | 376 | #ifdef CONFIG_HOTPLUG_CPU |
360 | /* State of each CPU during hotplug phases */ | ||
361 | static DEFINE_PER_CPU(int, cpu_state) = { 0 }; | ||
362 | 377 | ||
363 | int generic_cpu_disable(void) | 378 | int generic_cpu_disable(void) |
364 | { | 379 | { |
@@ -406,6 +421,11 @@ void generic_set_cpu_dead(unsigned int cpu) | |||
406 | { | 421 | { |
407 | per_cpu(cpu_state, cpu) = CPU_DEAD; | 422 | per_cpu(cpu_state, cpu) = CPU_DEAD; |
408 | } | 423 | } |
424 | |||
425 | int generic_check_cpu_restart(unsigned int cpu) | ||
426 | { | ||
427 | return per_cpu(cpu_state, cpu) == CPU_UP_PREPARE; | ||
428 | } | ||
409 | #endif | 429 | #endif |
410 | 430 | ||
411 | struct create_idle { | 431 | struct create_idle { |
diff --git a/arch/powerpc/kernel/stacktrace.c b/arch/powerpc/kernel/stacktrace.c index b0dbb1daa4df..3d30ef1038e5 100644 --- a/arch/powerpc/kernel/stacktrace.c +++ b/arch/powerpc/kernel/stacktrace.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * 2 of the License, or (at your option) any later version. | 10 | * 2 of the License, or (at your option) any later version. |
11 | */ | 11 | */ |
12 | 12 | ||
13 | #include <linux/module.h> | 13 | #include <linux/export.h> |
14 | #include <linux/sched.h> | 14 | #include <linux/sched.h> |
15 | #include <linux/stacktrace.h> | 15 | #include <linux/stacktrace.h> |
16 | #include <asm/ptrace.h> | 16 | #include <asm/ptrace.h> |
diff --git a/arch/powerpc/kernel/swsusp.c b/arch/powerpc/kernel/swsusp.c index aa17b76dd427..641f9adc6205 100644 --- a/arch/powerpc/kernel/swsusp.c +++ b/arch/powerpc/kernel/swsusp.c | |||
@@ -33,6 +33,6 @@ void save_processor_state(void) | |||
33 | void restore_processor_state(void) | 33 | void restore_processor_state(void) |
34 | { | 34 | { |
35 | #ifdef CONFIG_PPC32 | 35 | #ifdef CONFIG_PPC32 |
36 | switch_mmu_context(NULL, current->active_mm); | 36 | switch_mmu_context(current->active_mm, current->active_mm); |
37 | #endif | 37 | #endif |
38 | } | 38 | } |
diff --git a/arch/powerpc/kernel/swsusp_64.c b/arch/powerpc/kernel/swsusp_64.c index 6f3f0697274e..168e88480223 100644 --- a/arch/powerpc/kernel/swsusp_64.c +++ b/arch/powerpc/kernel/swsusp_64.c | |||
@@ -9,6 +9,7 @@ | |||
9 | #include <asm/system.h> | 9 | #include <asm/system.h> |
10 | #include <asm/iommu.h> | 10 | #include <asm/iommu.h> |
11 | #include <linux/irq.h> | 11 | #include <linux/irq.h> |
12 | #include <linux/sched.h> | ||
12 | #include <linux/interrupt.h> | 13 | #include <linux/interrupt.h> |
13 | 14 | ||
14 | void do_after_copyback(void) | 15 | void do_after_copyback(void) |
diff --git a/arch/powerpc/kernel/sysfs.c b/arch/powerpc/kernel/sysfs.c index f0f2199e64e1..ce035c1905f0 100644 --- a/arch/powerpc/kernel/sysfs.c +++ b/arch/powerpc/kernel/sysfs.c | |||
@@ -4,7 +4,7 @@ | |||
4 | #include <linux/percpu.h> | 4 | #include <linux/percpu.h> |
5 | #include <linux/init.h> | 5 | #include <linux/init.h> |
6 | #include <linux/sched.h> | 6 | #include <linux/sched.h> |
7 | #include <linux/module.h> | 7 | #include <linux/export.h> |
8 | #include <linux/nodemask.h> | 8 | #include <linux/nodemask.h> |
9 | #include <linux/cpumask.h> | 9 | #include <linux/cpumask.h> |
10 | #include <linux/notifier.h> | 10 | #include <linux/notifier.h> |
diff --git a/arch/powerpc/kernel/time.c b/arch/powerpc/kernel/time.c index 03b29a6759ab..522bb1dfc353 100644 --- a/arch/powerpc/kernel/time.c +++ b/arch/powerpc/kernel/time.c | |||
@@ -33,7 +33,7 @@ | |||
33 | */ | 33 | */ |
34 | 34 | ||
35 | #include <linux/errno.h> | 35 | #include <linux/errno.h> |
36 | #include <linux/module.h> | 36 | #include <linux/export.h> |
37 | #include <linux/sched.h> | 37 | #include <linux/sched.h> |
38 | #include <linux/kernel.h> | 38 | #include <linux/kernel.h> |
39 | #include <linux/param.h> | 39 | #include <linux/param.h> |
diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c index f19d9777d3c1..4e5908264d1a 100644 --- a/arch/powerpc/kernel/traps.c +++ b/arch/powerpc/kernel/traps.c | |||
@@ -457,7 +457,14 @@ int machine_check_e500mc(struct pt_regs *regs) | |||
457 | 457 | ||
458 | if (reason & MCSR_DCPERR_MC) { | 458 | if (reason & MCSR_DCPERR_MC) { |
459 | printk("Data Cache Parity Error\n"); | 459 | printk("Data Cache Parity Error\n"); |
460 | recoverable = 0; | 460 | |
461 | /* | ||
462 | * In write shadow mode we auto-recover from the error, but it | ||
463 | * may still get logged and cause a machine check. We should | ||
464 | * only treat the non-write shadow case as non-recoverable. | ||
465 | */ | ||
466 | if (!(mfspr(SPRN_L1CSR2) & L1CSR2_DCWS)) | ||
467 | recoverable = 0; | ||
461 | } | 468 | } |
462 | 469 | ||
463 | if (reason & MCSR_L2MMU_MHIT) { | 470 | if (reason & MCSR_L2MMU_MHIT) { |
diff --git a/arch/powerpc/kernel/udbg.c b/arch/powerpc/kernel/udbg.c index faa82c1f3f68..57fa2c0a531c 100644 --- a/arch/powerpc/kernel/udbg.c +++ b/arch/powerpc/kernel/udbg.c | |||
@@ -67,6 +67,14 @@ void __init udbg_early_init(void) | |||
67 | udbg_init_usbgecko(); | 67 | udbg_init_usbgecko(); |
68 | #elif defined(CONFIG_PPC_EARLY_DEBUG_WSP) | 68 | #elif defined(CONFIG_PPC_EARLY_DEBUG_WSP) |
69 | udbg_init_wsp(); | 69 | udbg_init_wsp(); |
70 | #elif defined(CONFIG_PPC_EARLY_DEBUG_EHV_BC) | ||
71 | udbg_init_ehv_bc(); | ||
72 | #elif defined(CONFIG_PPC_EARLY_DEBUG_PS3GELIC) | ||
73 | udbg_init_ps3gelic(); | ||
74 | #elif defined(CONFIG_PPC_EARLY_DEBUG_OPAL_RAW) | ||
75 | udbg_init_debug_opal_raw(); | ||
76 | #elif defined(CONFIG_PPC_EARLY_DEBUG_OPAL_HVSI) | ||
77 | udbg_init_debug_opal_hvsi(); | ||
70 | #endif | 78 | #endif |
71 | 79 | ||
72 | #ifdef CONFIG_PPC_EARLY_DEBUG | 80 | #ifdef CONFIG_PPC_EARLY_DEBUG |
diff --git a/arch/powerpc/kernel/vdso.c b/arch/powerpc/kernel/vdso.c index 142ab1008c3b..7d14bb697d40 100644 --- a/arch/powerpc/kernel/vdso.c +++ b/arch/powerpc/kernel/vdso.c | |||
@@ -9,7 +9,6 @@ | |||
9 | * 2 of the License, or (at your option) any later version. | 9 | * 2 of the License, or (at your option) any later version. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/module.h> | ||
13 | #include <linux/errno.h> | 12 | #include <linux/errno.h> |
14 | #include <linux/sched.h> | 13 | #include <linux/sched.h> |
15 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
diff --git a/arch/powerpc/kernel/vio.c b/arch/powerpc/kernel/vio.c index 1b695fdc362b..f65af61996bd 100644 --- a/arch/powerpc/kernel/vio.c +++ b/arch/powerpc/kernel/vio.c | |||
@@ -15,11 +15,12 @@ | |||
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include <linux/types.h> | 17 | #include <linux/types.h> |
18 | #include <linux/stat.h> | ||
18 | #include <linux/device.h> | 19 | #include <linux/device.h> |
19 | #include <linux/init.h> | 20 | #include <linux/init.h> |
20 | #include <linux/slab.h> | 21 | #include <linux/slab.h> |
21 | #include <linux/console.h> | 22 | #include <linux/console.h> |
22 | #include <linux/module.h> | 23 | #include <linux/export.h> |
23 | #include <linux/mm.h> | 24 | #include <linux/mm.h> |
24 | #include <linux/dma-mapping.h> | 25 | #include <linux/dma-mapping.h> |
25 | #include <linux/kobject.h> | 26 | #include <linux/kobject.h> |
@@ -605,15 +606,20 @@ static int vio_dma_iommu_dma_supported(struct device *dev, u64 mask) | |||
605 | return dma_iommu_ops.dma_supported(dev, mask); | 606 | return dma_iommu_ops.dma_supported(dev, mask); |
606 | } | 607 | } |
607 | 608 | ||
608 | struct dma_map_ops vio_dma_mapping_ops = { | 609 | static u64 vio_dma_get_required_mask(struct device *dev) |
609 | .alloc_coherent = vio_dma_iommu_alloc_coherent, | 610 | { |
610 | .free_coherent = vio_dma_iommu_free_coherent, | 611 | return dma_iommu_ops.get_required_mask(dev); |
611 | .map_sg = vio_dma_iommu_map_sg, | 612 | } |
612 | .unmap_sg = vio_dma_iommu_unmap_sg, | ||
613 | .map_page = vio_dma_iommu_map_page, | ||
614 | .unmap_page = vio_dma_iommu_unmap_page, | ||
615 | .dma_supported = vio_dma_iommu_dma_supported, | ||
616 | 613 | ||
614 | struct dma_map_ops vio_dma_mapping_ops = { | ||
615 | .alloc_coherent = vio_dma_iommu_alloc_coherent, | ||
616 | .free_coherent = vio_dma_iommu_free_coherent, | ||
617 | .map_sg = vio_dma_iommu_map_sg, | ||
618 | .unmap_sg = vio_dma_iommu_unmap_sg, | ||
619 | .map_page = vio_dma_iommu_map_page, | ||
620 | .unmap_page = vio_dma_iommu_unmap_page, | ||
621 | .dma_supported = vio_dma_iommu_dma_supported, | ||
622 | .get_required_mask = vio_dma_get_required_mask, | ||
617 | }; | 623 | }; |
618 | 624 | ||
619 | /** | 625 | /** |
diff --git a/arch/powerpc/kvm/44x.c b/arch/powerpc/kvm/44x.c index da3a1225c0ac..7b612a76c701 100644 --- a/arch/powerpc/kvm/44x.c +++ b/arch/powerpc/kvm/44x.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/kvm_host.h> | 20 | #include <linux/kvm_host.h> |
21 | #include <linux/slab.h> | 21 | #include <linux/slab.h> |
22 | #include <linux/err.h> | 22 | #include <linux/err.h> |
23 | #include <linux/export.h> | ||
23 | 24 | ||
24 | #include <asm/reg.h> | 25 | #include <asm/reg.h> |
25 | #include <asm/cputable.h> | 26 | #include <asm/cputable.h> |
@@ -78,6 +79,8 @@ int kvmppc_core_vcpu_setup(struct kvm_vcpu *vcpu) | |||
78 | for (i = 0; i < ARRAY_SIZE(vcpu_44x->shadow_refs); i++) | 79 | for (i = 0; i < ARRAY_SIZE(vcpu_44x->shadow_refs); i++) |
79 | vcpu_44x->shadow_refs[i].gtlb_index = -1; | 80 | vcpu_44x->shadow_refs[i].gtlb_index = -1; |
80 | 81 | ||
82 | vcpu->arch.cpu_type = KVM_CPU_440; | ||
83 | |||
81 | return 0; | 84 | return 0; |
82 | } | 85 | } |
83 | 86 | ||
diff --git a/arch/powerpc/kvm/Makefile b/arch/powerpc/kvm/Makefile index 08428e2c188d..3688aeecc4b2 100644 --- a/arch/powerpc/kvm/Makefile +++ b/arch/powerpc/kvm/Makefile | |||
@@ -43,18 +43,22 @@ kvm-book3s_64-objs-$(CONFIG_KVM_BOOK3S_64_PR) := \ | |||
43 | fpu.o \ | 43 | fpu.o \ |
44 | book3s_paired_singles.o \ | 44 | book3s_paired_singles.o \ |
45 | book3s_pr.o \ | 45 | book3s_pr.o \ |
46 | book3s_pr_papr.o \ | ||
46 | book3s_emulate.o \ | 47 | book3s_emulate.o \ |
47 | book3s_interrupts.o \ | 48 | book3s_interrupts.o \ |
48 | book3s_mmu_hpte.o \ | 49 | book3s_mmu_hpte.o \ |
49 | book3s_64_mmu_host.o \ | 50 | book3s_64_mmu_host.o \ |
50 | book3s_64_mmu.o \ | 51 | book3s_64_mmu.o \ |
51 | book3s_32_mmu.o | 52 | book3s_32_mmu.o |
53 | kvm-book3s_64-builtin-objs-$(CONFIG_KVM_BOOK3S_64_PR) := \ | ||
54 | book3s_rmhandlers.o | ||
52 | 55 | ||
53 | kvm-book3s_64-objs-$(CONFIG_KVM_BOOK3S_64_HV) := \ | 56 | kvm-book3s_64-objs-$(CONFIG_KVM_BOOK3S_64_HV) := \ |
54 | book3s_hv.o \ | 57 | book3s_hv.o \ |
55 | book3s_hv_interrupts.o \ | 58 | book3s_hv_interrupts.o \ |
56 | book3s_64_mmu_hv.o | 59 | book3s_64_mmu_hv.o |
57 | kvm-book3s_64-builtin-objs-$(CONFIG_KVM_BOOK3S_64_HV) := \ | 60 | kvm-book3s_64-builtin-objs-$(CONFIG_KVM_BOOK3S_64_HV) := \ |
61 | book3s_hv_rmhandlers.o \ | ||
58 | book3s_hv_rm_mmu.o \ | 62 | book3s_hv_rm_mmu.o \ |
59 | book3s_64_vio_hv.o \ | 63 | book3s_64_vio_hv.o \ |
60 | book3s_hv_builtin.o | 64 | book3s_hv_builtin.o |
diff --git a/arch/powerpc/kvm/book3s.c b/arch/powerpc/kvm/book3s.c index f68a34d16035..a459479995c6 100644 --- a/arch/powerpc/kvm/book3s.c +++ b/arch/powerpc/kvm/book3s.c | |||
@@ -16,6 +16,7 @@ | |||
16 | 16 | ||
17 | #include <linux/kvm_host.h> | 17 | #include <linux/kvm_host.h> |
18 | #include <linux/err.h> | 18 | #include <linux/err.h> |
19 | #include <linux/export.h> | ||
19 | #include <linux/slab.h> | 20 | #include <linux/slab.h> |
20 | 21 | ||
21 | #include <asm/reg.h> | 22 | #include <asm/reg.h> |
diff --git a/arch/powerpc/kvm/book3s_32_sr.S b/arch/powerpc/kvm/book3s_32_sr.S index 3608471ad2d8..7e06a6fc8d07 100644 --- a/arch/powerpc/kvm/book3s_32_sr.S +++ b/arch/powerpc/kvm/book3s_32_sr.S | |||
@@ -31,7 +31,7 @@ | |||
31 | * R1 = host R1 | 31 | * R1 = host R1 |
32 | * R2 = host R2 | 32 | * R2 = host R2 |
33 | * R3 = shadow vcpu | 33 | * R3 = shadow vcpu |
34 | * all other volatile GPRS = free | 34 | * all other volatile GPRS = free except R4, R6 |
35 | * SVCPU[CR] = guest CR | 35 | * SVCPU[CR] = guest CR |
36 | * SVCPU[XER] = guest XER | 36 | * SVCPU[XER] = guest XER |
37 | * SVCPU[CTR] = guest CTR | 37 | * SVCPU[CTR] = guest CTR |
diff --git a/arch/powerpc/kvm/book3s_64_mmu.c b/arch/powerpc/kvm/book3s_64_mmu.c index c6d3e194b6b4..b871721c0050 100644 --- a/arch/powerpc/kvm/book3s_64_mmu.c +++ b/arch/powerpc/kvm/book3s_64_mmu.c | |||
@@ -128,7 +128,13 @@ static hva_t kvmppc_mmu_book3s_64_get_pteg( | |||
128 | dprintk("MMU: page=0x%x sdr1=0x%llx pteg=0x%llx vsid=0x%llx\n", | 128 | dprintk("MMU: page=0x%x sdr1=0x%llx pteg=0x%llx vsid=0x%llx\n", |
129 | page, vcpu_book3s->sdr1, pteg, slbe->vsid); | 129 | page, vcpu_book3s->sdr1, pteg, slbe->vsid); |
130 | 130 | ||
131 | r = gfn_to_hva(vcpu_book3s->vcpu.kvm, pteg >> PAGE_SHIFT); | 131 | /* When running a PAPR guest, SDR1 contains a HVA address instead |
132 | of a GPA */ | ||
133 | if (vcpu_book3s->vcpu.arch.papr_enabled) | ||
134 | r = pteg; | ||
135 | else | ||
136 | r = gfn_to_hva(vcpu_book3s->vcpu.kvm, pteg >> PAGE_SHIFT); | ||
137 | |||
132 | if (kvm_is_error_hva(r)) | 138 | if (kvm_is_error_hva(r)) |
133 | return r; | 139 | return r; |
134 | return r | (pteg & ~PAGE_MASK); | 140 | return r | (pteg & ~PAGE_MASK); |
diff --git a/arch/powerpc/kvm/book3s_64_slb.S b/arch/powerpc/kvm/book3s_64_slb.S index 04e7d3bbfe8b..f2e6e48ea463 100644 --- a/arch/powerpc/kvm/book3s_64_slb.S +++ b/arch/powerpc/kvm/book3s_64_slb.S | |||
@@ -53,7 +53,7 @@ slb_exit_skip_ ## num: | |||
53 | * R1 = host R1 | 53 | * R1 = host R1 |
54 | * R2 = host R2 | 54 | * R2 = host R2 |
55 | * R3 = shadow vcpu | 55 | * R3 = shadow vcpu |
56 | * all other volatile GPRS = free | 56 | * all other volatile GPRS = free except R4, R6 |
57 | * SVCPU[CR] = guest CR | 57 | * SVCPU[CR] = guest CR |
58 | * SVCPU[XER] = guest XER | 58 | * SVCPU[XER] = guest XER |
59 | * SVCPU[CTR] = guest CTR | 59 | * SVCPU[CTR] = guest CTR |
diff --git a/arch/powerpc/kvm/book3s_emulate.c b/arch/powerpc/kvm/book3s_emulate.c index 466846557089..0c9dc62532d0 100644 --- a/arch/powerpc/kvm/book3s_emulate.c +++ b/arch/powerpc/kvm/book3s_emulate.c | |||
@@ -63,6 +63,25 @@ | |||
63 | * function pointers, so let's just disable the define. */ | 63 | * function pointers, so let's just disable the define. */ |
64 | #undef mfsrin | 64 | #undef mfsrin |
65 | 65 | ||
66 | enum priv_level { | ||
67 | PRIV_PROBLEM = 0, | ||
68 | PRIV_SUPER = 1, | ||
69 | PRIV_HYPER = 2, | ||
70 | }; | ||
71 | |||
72 | static bool spr_allowed(struct kvm_vcpu *vcpu, enum priv_level level) | ||
73 | { | ||
74 | /* PAPR VMs only access supervisor SPRs */ | ||
75 | if (vcpu->arch.papr_enabled && (level > PRIV_SUPER)) | ||
76 | return false; | ||
77 | |||
78 | /* Limit user space to its own small SPR set */ | ||
79 | if ((vcpu->arch.shared->msr & MSR_PR) && level > PRIV_PROBLEM) | ||
80 | return false; | ||
81 | |||
82 | return true; | ||
83 | } | ||
84 | |||
66 | int kvmppc_core_emulate_op(struct kvm_run *run, struct kvm_vcpu *vcpu, | 85 | int kvmppc_core_emulate_op(struct kvm_run *run, struct kvm_vcpu *vcpu, |
67 | unsigned int inst, int *advance) | 86 | unsigned int inst, int *advance) |
68 | { | 87 | { |
@@ -296,6 +315,8 @@ int kvmppc_core_emulate_mtspr(struct kvm_vcpu *vcpu, int sprn, int rs) | |||
296 | 315 | ||
297 | switch (sprn) { | 316 | switch (sprn) { |
298 | case SPRN_SDR1: | 317 | case SPRN_SDR1: |
318 | if (!spr_allowed(vcpu, PRIV_HYPER)) | ||
319 | goto unprivileged; | ||
299 | to_book3s(vcpu)->sdr1 = spr_val; | 320 | to_book3s(vcpu)->sdr1 = spr_val; |
300 | break; | 321 | break; |
301 | case SPRN_DSISR: | 322 | case SPRN_DSISR: |
@@ -390,6 +411,7 @@ int kvmppc_core_emulate_mtspr(struct kvm_vcpu *vcpu, int sprn, int rs) | |||
390 | case SPRN_PMC4_GEKKO: | 411 | case SPRN_PMC4_GEKKO: |
391 | case SPRN_WPAR_GEKKO: | 412 | case SPRN_WPAR_GEKKO: |
392 | break; | 413 | break; |
414 | unprivileged: | ||
393 | default: | 415 | default: |
394 | printk(KERN_INFO "KVM: invalid SPR write: %d\n", sprn); | 416 | printk(KERN_INFO "KVM: invalid SPR write: %d\n", sprn); |
395 | #ifndef DEBUG_SPR | 417 | #ifndef DEBUG_SPR |
@@ -421,6 +443,8 @@ int kvmppc_core_emulate_mfspr(struct kvm_vcpu *vcpu, int sprn, int rt) | |||
421 | break; | 443 | break; |
422 | } | 444 | } |
423 | case SPRN_SDR1: | 445 | case SPRN_SDR1: |
446 | if (!spr_allowed(vcpu, PRIV_HYPER)) | ||
447 | goto unprivileged; | ||
424 | kvmppc_set_gpr(vcpu, rt, to_book3s(vcpu)->sdr1); | 448 | kvmppc_set_gpr(vcpu, rt, to_book3s(vcpu)->sdr1); |
425 | break; | 449 | break; |
426 | case SPRN_DSISR: | 450 | case SPRN_DSISR: |
@@ -449,6 +473,10 @@ int kvmppc_core_emulate_mfspr(struct kvm_vcpu *vcpu, int sprn, int rt) | |||
449 | case SPRN_HID5: | 473 | case SPRN_HID5: |
450 | kvmppc_set_gpr(vcpu, rt, to_book3s(vcpu)->hid[5]); | 474 | kvmppc_set_gpr(vcpu, rt, to_book3s(vcpu)->hid[5]); |
451 | break; | 475 | break; |
476 | case SPRN_CFAR: | ||
477 | case SPRN_PURR: | ||
478 | kvmppc_set_gpr(vcpu, rt, 0); | ||
479 | break; | ||
452 | case SPRN_GQR0: | 480 | case SPRN_GQR0: |
453 | case SPRN_GQR1: | 481 | case SPRN_GQR1: |
454 | case SPRN_GQR2: | 482 | case SPRN_GQR2: |
@@ -476,6 +504,7 @@ int kvmppc_core_emulate_mfspr(struct kvm_vcpu *vcpu, int sprn, int rt) | |||
476 | kvmppc_set_gpr(vcpu, rt, 0); | 504 | kvmppc_set_gpr(vcpu, rt, 0); |
477 | break; | 505 | break; |
478 | default: | 506 | default: |
507 | unprivileged: | ||
479 | printk(KERN_INFO "KVM: invalid SPR read: %d\n", sprn); | 508 | printk(KERN_INFO "KVM: invalid SPR read: %d\n", sprn); |
480 | #ifndef DEBUG_SPR | 509 | #ifndef DEBUG_SPR |
481 | emulated = EMULATE_FAIL; | 510 | emulated = EMULATE_FAIL; |
diff --git a/arch/powerpc/kvm/book3s_exports.c b/arch/powerpc/kvm/book3s_exports.c index 88c8f26add02..a150817d6d4c 100644 --- a/arch/powerpc/kvm/book3s_exports.c +++ b/arch/powerpc/kvm/book3s_exports.c | |||
@@ -17,15 +17,13 @@ | |||
17 | * Authors: Alexander Graf <agraf@suse.de> | 17 | * Authors: Alexander Graf <agraf@suse.de> |
18 | */ | 18 | */ |
19 | 19 | ||
20 | #include <linux/module.h> | 20 | #include <linux/export.h> |
21 | #include <asm/kvm_book3s.h> | 21 | #include <asm/kvm_book3s.h> |
22 | 22 | ||
23 | #ifdef CONFIG_KVM_BOOK3S_64_HV | 23 | #ifdef CONFIG_KVM_BOOK3S_64_HV |
24 | EXPORT_SYMBOL_GPL(kvmppc_hv_entry_trampoline); | 24 | EXPORT_SYMBOL_GPL(kvmppc_hv_entry_trampoline); |
25 | #else | 25 | #else |
26 | EXPORT_SYMBOL_GPL(kvmppc_handler_trampoline_enter); | 26 | EXPORT_SYMBOL_GPL(kvmppc_entry_trampoline); |
27 | EXPORT_SYMBOL_GPL(kvmppc_handler_lowmem_trampoline); | ||
28 | EXPORT_SYMBOL_GPL(kvmppc_rmcall); | ||
29 | EXPORT_SYMBOL_GPL(kvmppc_load_up_fpu); | 27 | EXPORT_SYMBOL_GPL(kvmppc_load_up_fpu); |
30 | #ifdef CONFIG_ALTIVEC | 28 | #ifdef CONFIG_ALTIVEC |
31 | EXPORT_SYMBOL_GPL(kvmppc_load_up_altivec); | 29 | EXPORT_SYMBOL_GPL(kvmppc_load_up_altivec); |
diff --git a/arch/powerpc/kvm/book3s_hv.c b/arch/powerpc/kvm/book3s_hv.c index cc0d7f1b19ab..0cdbc07cec14 100644 --- a/arch/powerpc/kvm/book3s_hv.c +++ b/arch/powerpc/kvm/book3s_hv.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <linux/preempt.h> | 24 | #include <linux/preempt.h> |
25 | #include <linux/sched.h> | 25 | #include <linux/sched.h> |
26 | #include <linux/delay.h> | 26 | #include <linux/delay.h> |
27 | #include <linux/export.h> | ||
27 | #include <linux/fs.h> | 28 | #include <linux/fs.h> |
28 | #include <linux/anon_inodes.h> | 29 | #include <linux/anon_inodes.h> |
29 | #include <linux/cpumask.h> | 30 | #include <linux/cpumask.h> |
@@ -62,6 +63,8 @@ | |||
62 | /* #define EXIT_DEBUG_SIMPLE */ | 63 | /* #define EXIT_DEBUG_SIMPLE */ |
63 | /* #define EXIT_DEBUG_INT */ | 64 | /* #define EXIT_DEBUG_INT */ |
64 | 65 | ||
66 | static void kvmppc_end_cede(struct kvm_vcpu *vcpu); | ||
67 | |||
65 | void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu) | 68 | void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
66 | { | 69 | { |
67 | local_paca->kvm_hstate.kvm_vcpu = vcpu; | 70 | local_paca->kvm_hstate.kvm_vcpu = vcpu; |
@@ -72,40 +75,10 @@ void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu) | |||
72 | { | 75 | { |
73 | } | 76 | } |
74 | 77 | ||
75 | static void kvmppc_vcpu_blocked(struct kvm_vcpu *vcpu); | ||
76 | static void kvmppc_vcpu_unblocked(struct kvm_vcpu *vcpu); | ||
77 | |||
78 | void kvmppc_vcpu_block(struct kvm_vcpu *vcpu) | ||
79 | { | ||
80 | u64 now; | ||
81 | unsigned long dec_nsec; | ||
82 | |||
83 | now = get_tb(); | ||
84 | if (now >= vcpu->arch.dec_expires && !kvmppc_core_pending_dec(vcpu)) | ||
85 | kvmppc_core_queue_dec(vcpu); | ||
86 | if (vcpu->arch.pending_exceptions) | ||
87 | return; | ||
88 | if (vcpu->arch.dec_expires != ~(u64)0) { | ||
89 | dec_nsec = (vcpu->arch.dec_expires - now) * NSEC_PER_SEC / | ||
90 | tb_ticks_per_sec; | ||
91 | hrtimer_start(&vcpu->arch.dec_timer, ktime_set(0, dec_nsec), | ||
92 | HRTIMER_MODE_REL); | ||
93 | } | ||
94 | |||
95 | kvmppc_vcpu_blocked(vcpu); | ||
96 | |||
97 | kvm_vcpu_block(vcpu); | ||
98 | vcpu->stat.halt_wakeup++; | ||
99 | |||
100 | if (vcpu->arch.dec_expires != ~(u64)0) | ||
101 | hrtimer_try_to_cancel(&vcpu->arch.dec_timer); | ||
102 | |||
103 | kvmppc_vcpu_unblocked(vcpu); | ||
104 | } | ||
105 | |||
106 | void kvmppc_set_msr(struct kvm_vcpu *vcpu, u64 msr) | 78 | void kvmppc_set_msr(struct kvm_vcpu *vcpu, u64 msr) |
107 | { | 79 | { |
108 | vcpu->arch.shregs.msr = msr; | 80 | vcpu->arch.shregs.msr = msr; |
81 | kvmppc_end_cede(vcpu); | ||
109 | } | 82 | } |
110 | 83 | ||
111 | void kvmppc_set_pvr(struct kvm_vcpu *vcpu, u32 pvr) | 84 | void kvmppc_set_pvr(struct kvm_vcpu *vcpu, u32 pvr) |
@@ -257,15 +230,6 @@ int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu) | |||
257 | 230 | ||
258 | switch (req) { | 231 | switch (req) { |
259 | case H_CEDE: | 232 | case H_CEDE: |
260 | vcpu->arch.shregs.msr |= MSR_EE; | ||
261 | vcpu->arch.ceded = 1; | ||
262 | smp_mb(); | ||
263 | if (!vcpu->arch.prodded) | ||
264 | kvmppc_vcpu_block(vcpu); | ||
265 | else | ||
266 | vcpu->arch.prodded = 0; | ||
267 | smp_mb(); | ||
268 | vcpu->arch.ceded = 0; | ||
269 | break; | 233 | break; |
270 | case H_PROD: | 234 | case H_PROD: |
271 | target = kvmppc_get_gpr(vcpu, 4); | 235 | target = kvmppc_get_gpr(vcpu, 4); |
@@ -388,20 +352,6 @@ static int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu, | |||
388 | break; | 352 | break; |
389 | } | 353 | } |
390 | 354 | ||
391 | |||
392 | if (!(r & RESUME_HOST)) { | ||
393 | /* To avoid clobbering exit_reason, only check for signals if | ||
394 | * we aren't already exiting to userspace for some other | ||
395 | * reason. */ | ||
396 | if (signal_pending(tsk)) { | ||
397 | vcpu->stat.signal_exits++; | ||
398 | run->exit_reason = KVM_EXIT_INTR; | ||
399 | r = -EINTR; | ||
400 | } else { | ||
401 | kvmppc_core_deliver_interrupts(vcpu); | ||
402 | } | ||
403 | } | ||
404 | |||
405 | return r; | 355 | return r; |
406 | } | 356 | } |
407 | 357 | ||
@@ -479,13 +429,9 @@ struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id) | |||
479 | kvmppc_mmu_book3s_hv_init(vcpu); | 429 | kvmppc_mmu_book3s_hv_init(vcpu); |
480 | 430 | ||
481 | /* | 431 | /* |
482 | * Some vcpus may start out in stopped state. If we initialize | 432 | * We consider the vcpu stopped until we see the first run ioctl for it. |
483 | * them to busy-in-host state they will stop other vcpus in the | ||
484 | * vcore from running. Instead we initialize them to blocked | ||
485 | * state, effectively considering them to be stopped until we | ||
486 | * see the first run ioctl for them. | ||
487 | */ | 433 | */ |
488 | vcpu->arch.state = KVMPPC_VCPU_BLOCKED; | 434 | vcpu->arch.state = KVMPPC_VCPU_STOPPED; |
489 | 435 | ||
490 | init_waitqueue_head(&vcpu->arch.cpu_run); | 436 | init_waitqueue_head(&vcpu->arch.cpu_run); |
491 | 437 | ||
@@ -496,6 +442,7 @@ struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id) | |||
496 | if (vcore) { | 442 | if (vcore) { |
497 | INIT_LIST_HEAD(&vcore->runnable_threads); | 443 | INIT_LIST_HEAD(&vcore->runnable_threads); |
498 | spin_lock_init(&vcore->lock); | 444 | spin_lock_init(&vcore->lock); |
445 | init_waitqueue_head(&vcore->wq); | ||
499 | } | 446 | } |
500 | kvm->arch.vcores[core] = vcore; | 447 | kvm->arch.vcores[core] = vcore; |
501 | } | 448 | } |
@@ -506,10 +453,12 @@ struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id) | |||
506 | 453 | ||
507 | spin_lock(&vcore->lock); | 454 | spin_lock(&vcore->lock); |
508 | ++vcore->num_threads; | 455 | ++vcore->num_threads; |
509 | ++vcore->n_blocked; | ||
510 | spin_unlock(&vcore->lock); | 456 | spin_unlock(&vcore->lock); |
511 | vcpu->arch.vcore = vcore; | 457 | vcpu->arch.vcore = vcore; |
512 | 458 | ||
459 | vcpu->arch.cpu_type = KVM_CPU_3S_64; | ||
460 | kvmppc_sanity_check(vcpu); | ||
461 | |||
513 | return vcpu; | 462 | return vcpu; |
514 | 463 | ||
515 | free_vcpu: | 464 | free_vcpu: |
@@ -524,30 +473,31 @@ void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu) | |||
524 | kfree(vcpu); | 473 | kfree(vcpu); |
525 | } | 474 | } |
526 | 475 | ||
527 | static void kvmppc_vcpu_blocked(struct kvm_vcpu *vcpu) | 476 | static void kvmppc_set_timer(struct kvm_vcpu *vcpu) |
528 | { | 477 | { |
529 | struct kvmppc_vcore *vc = vcpu->arch.vcore; | 478 | unsigned long dec_nsec, now; |
530 | 479 | ||
531 | spin_lock(&vc->lock); | 480 | now = get_tb(); |
532 | vcpu->arch.state = KVMPPC_VCPU_BLOCKED; | 481 | if (now > vcpu->arch.dec_expires) { |
533 | ++vc->n_blocked; | 482 | /* decrementer has already gone negative */ |
534 | if (vc->n_runnable > 0 && | 483 | kvmppc_core_queue_dec(vcpu); |
535 | vc->n_runnable + vc->n_blocked == vc->num_threads) { | 484 | kvmppc_core_deliver_interrupts(vcpu); |
536 | vcpu = list_first_entry(&vc->runnable_threads, struct kvm_vcpu, | 485 | return; |
537 | arch.run_list); | ||
538 | wake_up(&vcpu->arch.cpu_run); | ||
539 | } | 486 | } |
540 | spin_unlock(&vc->lock); | 487 | dec_nsec = (vcpu->arch.dec_expires - now) * NSEC_PER_SEC |
488 | / tb_ticks_per_sec; | ||
489 | hrtimer_start(&vcpu->arch.dec_timer, ktime_set(0, dec_nsec), | ||
490 | HRTIMER_MODE_REL); | ||
491 | vcpu->arch.timer_running = 1; | ||
541 | } | 492 | } |
542 | 493 | ||
543 | static void kvmppc_vcpu_unblocked(struct kvm_vcpu *vcpu) | 494 | static void kvmppc_end_cede(struct kvm_vcpu *vcpu) |
544 | { | 495 | { |
545 | struct kvmppc_vcore *vc = vcpu->arch.vcore; | 496 | vcpu->arch.ceded = 0; |
546 | 497 | if (vcpu->arch.timer_running) { | |
547 | spin_lock(&vc->lock); | 498 | hrtimer_try_to_cancel(&vcpu->arch.dec_timer); |
548 | vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST; | 499 | vcpu->arch.timer_running = 0; |
549 | --vc->n_blocked; | 500 | } |
550 | spin_unlock(&vc->lock); | ||
551 | } | 501 | } |
552 | 502 | ||
553 | extern int __kvmppc_vcore_entry(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu); | 503 | extern int __kvmppc_vcore_entry(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu); |
@@ -562,6 +512,7 @@ static void kvmppc_remove_runnable(struct kvmppc_vcore *vc, | |||
562 | return; | 512 | return; |
563 | vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST; | 513 | vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST; |
564 | --vc->n_runnable; | 514 | --vc->n_runnable; |
515 | ++vc->n_busy; | ||
565 | /* decrement the physical thread id of each following vcpu */ | 516 | /* decrement the physical thread id of each following vcpu */ |
566 | v = vcpu; | 517 | v = vcpu; |
567 | list_for_each_entry_continue(v, &vc->runnable_threads, arch.run_list) | 518 | list_for_each_entry_continue(v, &vc->runnable_threads, arch.run_list) |
@@ -575,15 +526,20 @@ static void kvmppc_start_thread(struct kvm_vcpu *vcpu) | |||
575 | struct paca_struct *tpaca; | 526 | struct paca_struct *tpaca; |
576 | struct kvmppc_vcore *vc = vcpu->arch.vcore; | 527 | struct kvmppc_vcore *vc = vcpu->arch.vcore; |
577 | 528 | ||
529 | if (vcpu->arch.timer_running) { | ||
530 | hrtimer_try_to_cancel(&vcpu->arch.dec_timer); | ||
531 | vcpu->arch.timer_running = 0; | ||
532 | } | ||
578 | cpu = vc->pcpu + vcpu->arch.ptid; | 533 | cpu = vc->pcpu + vcpu->arch.ptid; |
579 | tpaca = &paca[cpu]; | 534 | tpaca = &paca[cpu]; |
580 | tpaca->kvm_hstate.kvm_vcpu = vcpu; | 535 | tpaca->kvm_hstate.kvm_vcpu = vcpu; |
581 | tpaca->kvm_hstate.kvm_vcore = vc; | 536 | tpaca->kvm_hstate.kvm_vcore = vc; |
537 | tpaca->kvm_hstate.napping = 0; | ||
538 | vcpu->cpu = vc->pcpu; | ||
582 | smp_wmb(); | 539 | smp_wmb(); |
583 | #ifdef CONFIG_PPC_ICP_NATIVE | 540 | #ifdef CONFIG_PPC_ICP_NATIVE |
584 | if (vcpu->arch.ptid) { | 541 | if (vcpu->arch.ptid) { |
585 | tpaca->cpu_start = 0x80; | 542 | tpaca->cpu_start = 0x80; |
586 | tpaca->kvm_hstate.in_guest = KVM_GUEST_MODE_GUEST; | ||
587 | wmb(); | 543 | wmb(); |
588 | xics_wake_cpu(cpu); | 544 | xics_wake_cpu(cpu); |
589 | ++vc->n_woken; | 545 | ++vc->n_woken; |
@@ -631,9 +587,10 @@ static int on_primary_thread(void) | |||
631 | */ | 587 | */ |
632 | static int kvmppc_run_core(struct kvmppc_vcore *vc) | 588 | static int kvmppc_run_core(struct kvmppc_vcore *vc) |
633 | { | 589 | { |
634 | struct kvm_vcpu *vcpu, *vnext; | 590 | struct kvm_vcpu *vcpu, *vcpu0, *vnext; |
635 | long ret; | 591 | long ret; |
636 | u64 now; | 592 | u64 now; |
593 | int ptid; | ||
637 | 594 | ||
638 | /* don't start if any threads have a signal pending */ | 595 | /* don't start if any threads have a signal pending */ |
639 | list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) | 596 | list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) |
@@ -652,29 +609,50 @@ static int kvmppc_run_core(struct kvmppc_vcore *vc) | |||
652 | goto out; | 609 | goto out; |
653 | } | 610 | } |
654 | 611 | ||
612 | /* | ||
613 | * Assign physical thread IDs, first to non-ceded vcpus | ||
614 | * and then to ceded ones. | ||
615 | */ | ||
616 | ptid = 0; | ||
617 | vcpu0 = NULL; | ||
618 | list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) { | ||
619 | if (!vcpu->arch.ceded) { | ||
620 | if (!ptid) | ||
621 | vcpu0 = vcpu; | ||
622 | vcpu->arch.ptid = ptid++; | ||
623 | } | ||
624 | } | ||
625 | if (!vcpu0) | ||
626 | return 0; /* nothing to run */ | ||
627 | list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) | ||
628 | if (vcpu->arch.ceded) | ||
629 | vcpu->arch.ptid = ptid++; | ||
630 | |||
655 | vc->n_woken = 0; | 631 | vc->n_woken = 0; |
656 | vc->nap_count = 0; | 632 | vc->nap_count = 0; |
657 | vc->entry_exit_count = 0; | 633 | vc->entry_exit_count = 0; |
658 | vc->vcore_running = 1; | 634 | vc->vcore_state = VCORE_RUNNING; |
659 | vc->in_guest = 0; | 635 | vc->in_guest = 0; |
660 | vc->pcpu = smp_processor_id(); | 636 | vc->pcpu = smp_processor_id(); |
637 | vc->napping_threads = 0; | ||
661 | list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) | 638 | list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) |
662 | kvmppc_start_thread(vcpu); | 639 | kvmppc_start_thread(vcpu); |
663 | vcpu = list_first_entry(&vc->runnable_threads, struct kvm_vcpu, | ||
664 | arch.run_list); | ||
665 | 640 | ||
641 | preempt_disable(); | ||
666 | spin_unlock(&vc->lock); | 642 | spin_unlock(&vc->lock); |
667 | 643 | ||
668 | preempt_disable(); | ||
669 | kvm_guest_enter(); | 644 | kvm_guest_enter(); |
670 | __kvmppc_vcore_entry(NULL, vcpu); | 645 | __kvmppc_vcore_entry(NULL, vcpu0); |
671 | 646 | ||
672 | /* wait for secondary threads to finish writing their state to memory */ | ||
673 | spin_lock(&vc->lock); | 647 | spin_lock(&vc->lock); |
648 | /* disable sending of IPIs on virtual external irqs */ | ||
649 | list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) | ||
650 | vcpu->cpu = -1; | ||
651 | /* wait for secondary threads to finish writing their state to memory */ | ||
674 | if (vc->nap_count < vc->n_woken) | 652 | if (vc->nap_count < vc->n_woken) |
675 | kvmppc_wait_for_nap(vc); | 653 | kvmppc_wait_for_nap(vc); |
676 | /* prevent other vcpu threads from doing kvmppc_start_thread() now */ | 654 | /* prevent other vcpu threads from doing kvmppc_start_thread() now */ |
677 | vc->vcore_running = 2; | 655 | vc->vcore_state = VCORE_EXITING; |
678 | spin_unlock(&vc->lock); | 656 | spin_unlock(&vc->lock); |
679 | 657 | ||
680 | /* make sure updates to secondary vcpu structs are visible now */ | 658 | /* make sure updates to secondary vcpu structs are visible now */ |
@@ -690,22 +668,26 @@ static int kvmppc_run_core(struct kvmppc_vcore *vc) | |||
690 | if (now < vcpu->arch.dec_expires && | 668 | if (now < vcpu->arch.dec_expires && |
691 | kvmppc_core_pending_dec(vcpu)) | 669 | kvmppc_core_pending_dec(vcpu)) |
692 | kvmppc_core_dequeue_dec(vcpu); | 670 | kvmppc_core_dequeue_dec(vcpu); |
693 | if (!vcpu->arch.trap) { | 671 | |
694 | if (signal_pending(vcpu->arch.run_task)) { | 672 | ret = RESUME_GUEST; |
695 | vcpu->arch.kvm_run->exit_reason = KVM_EXIT_INTR; | 673 | if (vcpu->arch.trap) |
696 | vcpu->arch.ret = -EINTR; | 674 | ret = kvmppc_handle_exit(vcpu->arch.kvm_run, vcpu, |
697 | } | 675 | vcpu->arch.run_task); |
698 | continue; /* didn't get to run */ | 676 | |
699 | } | ||
700 | ret = kvmppc_handle_exit(vcpu->arch.kvm_run, vcpu, | ||
701 | vcpu->arch.run_task); | ||
702 | vcpu->arch.ret = ret; | 677 | vcpu->arch.ret = ret; |
703 | vcpu->arch.trap = 0; | 678 | vcpu->arch.trap = 0; |
679 | |||
680 | if (vcpu->arch.ceded) { | ||
681 | if (ret != RESUME_GUEST) | ||
682 | kvmppc_end_cede(vcpu); | ||
683 | else | ||
684 | kvmppc_set_timer(vcpu); | ||
685 | } | ||
704 | } | 686 | } |
705 | 687 | ||
706 | spin_lock(&vc->lock); | 688 | spin_lock(&vc->lock); |
707 | out: | 689 | out: |
708 | vc->vcore_running = 0; | 690 | vc->vcore_state = VCORE_INACTIVE; |
709 | list_for_each_entry_safe(vcpu, vnext, &vc->runnable_threads, | 691 | list_for_each_entry_safe(vcpu, vnext, &vc->runnable_threads, |
710 | arch.run_list) { | 692 | arch.run_list) { |
711 | if (vcpu->arch.ret != RESUME_GUEST) { | 693 | if (vcpu->arch.ret != RESUME_GUEST) { |
@@ -717,82 +699,130 @@ static int kvmppc_run_core(struct kvmppc_vcore *vc) | |||
717 | return 1; | 699 | return 1; |
718 | } | 700 | } |
719 | 701 | ||
720 | static int kvmppc_run_vcpu(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu) | 702 | /* |
703 | * Wait for some other vcpu thread to execute us, and | ||
704 | * wake us up when we need to handle something in the host. | ||
705 | */ | ||
706 | static void kvmppc_wait_for_exec(struct kvm_vcpu *vcpu, int wait_state) | ||
721 | { | 707 | { |
722 | int ptid; | ||
723 | int wait_state; | ||
724 | struct kvmppc_vcore *vc; | ||
725 | DEFINE_WAIT(wait); | 708 | DEFINE_WAIT(wait); |
726 | 709 | ||
727 | /* No need to go into the guest when all we do is going out */ | 710 | prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state); |
728 | if (signal_pending(current)) { | 711 | if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) |
729 | kvm_run->exit_reason = KVM_EXIT_INTR; | 712 | schedule(); |
730 | return -EINTR; | 713 | finish_wait(&vcpu->arch.cpu_run, &wait); |
714 | } | ||
715 | |||
716 | /* | ||
717 | * All the vcpus in this vcore are idle, so wait for a decrementer | ||
718 | * or external interrupt to one of the vcpus. vc->lock is held. | ||
719 | */ | ||
720 | static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc) | ||
721 | { | ||
722 | DEFINE_WAIT(wait); | ||
723 | struct kvm_vcpu *v; | ||
724 | int all_idle = 1; | ||
725 | |||
726 | prepare_to_wait(&vc->wq, &wait, TASK_INTERRUPTIBLE); | ||
727 | vc->vcore_state = VCORE_SLEEPING; | ||
728 | spin_unlock(&vc->lock); | ||
729 | list_for_each_entry(v, &vc->runnable_threads, arch.run_list) { | ||
730 | if (!v->arch.ceded || v->arch.pending_exceptions) { | ||
731 | all_idle = 0; | ||
732 | break; | ||
733 | } | ||
731 | } | 734 | } |
735 | if (all_idle) | ||
736 | schedule(); | ||
737 | finish_wait(&vc->wq, &wait); | ||
738 | spin_lock(&vc->lock); | ||
739 | vc->vcore_state = VCORE_INACTIVE; | ||
740 | } | ||
732 | 741 | ||
733 | /* On PPC970, check that we have an RMA region */ | 742 | static int kvmppc_run_vcpu(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu) |
734 | if (!vcpu->kvm->arch.rma && cpu_has_feature(CPU_FTR_ARCH_201)) | 743 | { |
735 | return -EPERM; | 744 | int n_ceded; |
745 | int prev_state; | ||
746 | struct kvmppc_vcore *vc; | ||
747 | struct kvm_vcpu *v, *vn; | ||
736 | 748 | ||
737 | kvm_run->exit_reason = 0; | 749 | kvm_run->exit_reason = 0; |
738 | vcpu->arch.ret = RESUME_GUEST; | 750 | vcpu->arch.ret = RESUME_GUEST; |
739 | vcpu->arch.trap = 0; | 751 | vcpu->arch.trap = 0; |
740 | 752 | ||
741 | flush_fp_to_thread(current); | ||
742 | flush_altivec_to_thread(current); | ||
743 | flush_vsx_to_thread(current); | ||
744 | |||
745 | /* | 753 | /* |
746 | * Synchronize with other threads in this virtual core | 754 | * Synchronize with other threads in this virtual core |
747 | */ | 755 | */ |
748 | vc = vcpu->arch.vcore; | 756 | vc = vcpu->arch.vcore; |
749 | spin_lock(&vc->lock); | 757 | spin_lock(&vc->lock); |
750 | /* This happens the first time this is called for a vcpu */ | 758 | vcpu->arch.ceded = 0; |
751 | if (vcpu->arch.state == KVMPPC_VCPU_BLOCKED) | ||
752 | --vc->n_blocked; | ||
753 | vcpu->arch.state = KVMPPC_VCPU_RUNNABLE; | ||
754 | ptid = vc->n_runnable; | ||
755 | vcpu->arch.run_task = current; | 759 | vcpu->arch.run_task = current; |
756 | vcpu->arch.kvm_run = kvm_run; | 760 | vcpu->arch.kvm_run = kvm_run; |
757 | vcpu->arch.ptid = ptid; | 761 | prev_state = vcpu->arch.state; |
762 | vcpu->arch.state = KVMPPC_VCPU_RUNNABLE; | ||
758 | list_add_tail(&vcpu->arch.run_list, &vc->runnable_threads); | 763 | list_add_tail(&vcpu->arch.run_list, &vc->runnable_threads); |
759 | ++vc->n_runnable; | 764 | ++vc->n_runnable; |
760 | 765 | ||
761 | wait_state = TASK_INTERRUPTIBLE; | 766 | /* |
762 | while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) { | 767 | * This happens the first time this is called for a vcpu. |
763 | if (signal_pending(current)) { | 768 | * If the vcore is already running, we may be able to start |
764 | if (!vc->vcore_running) { | 769 | * this thread straight away and have it join in. |
765 | kvm_run->exit_reason = KVM_EXIT_INTR; | 770 | */ |
766 | vcpu->arch.ret = -EINTR; | 771 | if (prev_state == KVMPPC_VCPU_STOPPED) { |
767 | break; | 772 | if (vc->vcore_state == VCORE_RUNNING && |
768 | } | 773 | VCORE_EXIT_COUNT(vc) == 0) { |
769 | /* have to wait for vcore to stop executing guest */ | 774 | vcpu->arch.ptid = vc->n_runnable - 1; |
770 | wait_state = TASK_UNINTERRUPTIBLE; | 775 | kvmppc_start_thread(vcpu); |
771 | smp_send_reschedule(vc->pcpu); | ||
772 | } | 776 | } |
773 | 777 | ||
774 | if (!vc->vcore_running && | 778 | } else if (prev_state == KVMPPC_VCPU_BUSY_IN_HOST) |
775 | vc->n_runnable + vc->n_blocked == vc->num_threads) { | 779 | --vc->n_busy; |
776 | /* we can run now */ | ||
777 | if (kvmppc_run_core(vc)) | ||
778 | continue; | ||
779 | } | ||
780 | 780 | ||
781 | if (vc->vcore_running == 1 && VCORE_EXIT_COUNT(vc) == 0) | 781 | while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE && |
782 | kvmppc_start_thread(vcpu); | 782 | !signal_pending(current)) { |
783 | if (vc->n_busy || vc->vcore_state != VCORE_INACTIVE) { | ||
784 | spin_unlock(&vc->lock); | ||
785 | kvmppc_wait_for_exec(vcpu, TASK_INTERRUPTIBLE); | ||
786 | spin_lock(&vc->lock); | ||
787 | continue; | ||
788 | } | ||
789 | n_ceded = 0; | ||
790 | list_for_each_entry(v, &vc->runnable_threads, arch.run_list) | ||
791 | n_ceded += v->arch.ceded; | ||
792 | if (n_ceded == vc->n_runnable) | ||
793 | kvmppc_vcore_blocked(vc); | ||
794 | else | ||
795 | kvmppc_run_core(vc); | ||
796 | |||
797 | list_for_each_entry_safe(v, vn, &vc->runnable_threads, | ||
798 | arch.run_list) { | ||
799 | kvmppc_core_deliver_interrupts(v); | ||
800 | if (signal_pending(v->arch.run_task)) { | ||
801 | kvmppc_remove_runnable(vc, v); | ||
802 | v->stat.signal_exits++; | ||
803 | v->arch.kvm_run->exit_reason = KVM_EXIT_INTR; | ||
804 | v->arch.ret = -EINTR; | ||
805 | wake_up(&v->arch.cpu_run); | ||
806 | } | ||
807 | } | ||
808 | } | ||
783 | 809 | ||
784 | /* wait for other threads to come in, or wait for vcore */ | 810 | if (signal_pending(current)) { |
785 | prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state); | 811 | if (vc->vcore_state == VCORE_RUNNING || |
786 | spin_unlock(&vc->lock); | 812 | vc->vcore_state == VCORE_EXITING) { |
787 | schedule(); | 813 | spin_unlock(&vc->lock); |
788 | finish_wait(&vcpu->arch.cpu_run, &wait); | 814 | kvmppc_wait_for_exec(vcpu, TASK_UNINTERRUPTIBLE); |
789 | spin_lock(&vc->lock); | 815 | spin_lock(&vc->lock); |
816 | } | ||
817 | if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) { | ||
818 | kvmppc_remove_runnable(vc, vcpu); | ||
819 | vcpu->stat.signal_exits++; | ||
820 | kvm_run->exit_reason = KVM_EXIT_INTR; | ||
821 | vcpu->arch.ret = -EINTR; | ||
822 | } | ||
790 | } | 823 | } |
791 | 824 | ||
792 | if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) | ||
793 | kvmppc_remove_runnable(vc, vcpu); | ||
794 | spin_unlock(&vc->lock); | 825 | spin_unlock(&vc->lock); |
795 | |||
796 | return vcpu->arch.ret; | 826 | return vcpu->arch.ret; |
797 | } | 827 | } |
798 | 828 | ||
@@ -800,6 +830,26 @@ int kvmppc_vcpu_run(struct kvm_run *run, struct kvm_vcpu *vcpu) | |||
800 | { | 830 | { |
801 | int r; | 831 | int r; |
802 | 832 | ||
833 | if (!vcpu->arch.sane) { | ||
834 | run->exit_reason = KVM_EXIT_INTERNAL_ERROR; | ||
835 | return -EINVAL; | ||
836 | } | ||
837 | |||
838 | /* No need to go into the guest when all we'll do is come back out */ | ||
839 | if (signal_pending(current)) { | ||
840 | run->exit_reason = KVM_EXIT_INTR; | ||
841 | return -EINTR; | ||
842 | } | ||
843 | |||
844 | /* On PPC970, check that we have an RMA region */ | ||
845 | if (!vcpu->kvm->arch.rma && cpu_has_feature(CPU_FTR_ARCH_201)) | ||
846 | return -EPERM; | ||
847 | |||
848 | flush_fp_to_thread(current); | ||
849 | flush_altivec_to_thread(current); | ||
850 | flush_vsx_to_thread(current); | ||
851 | vcpu->arch.wqp = &vcpu->arch.vcore->wq; | ||
852 | |||
803 | do { | 853 | do { |
804 | r = kvmppc_run_vcpu(run, vcpu); | 854 | r = kvmppc_run_vcpu(run, vcpu); |
805 | 855 | ||
diff --git a/arch/powerpc/kvm/book3s_hv_builtin.c b/arch/powerpc/kvm/book3s_hv_builtin.c index d43120355eec..286f13d601cf 100644 --- a/arch/powerpc/kvm/book3s_hv_builtin.c +++ b/arch/powerpc/kvm/book3s_hv_builtin.c | |||
@@ -8,6 +8,7 @@ | |||
8 | 8 | ||
9 | #include <linux/kvm_host.h> | 9 | #include <linux/kvm_host.h> |
10 | #include <linux/preempt.h> | 10 | #include <linux/preempt.h> |
11 | #include <linux/export.h> | ||
11 | #include <linux/sched.h> | 12 | #include <linux/sched.h> |
12 | #include <linux/spinlock.h> | 13 | #include <linux/spinlock.h> |
13 | #include <linux/bootmem.h> | 14 | #include <linux/bootmem.h> |
diff --git a/arch/powerpc/kvm/book3s_hv_rm_mmu.c b/arch/powerpc/kvm/book3s_hv_rm_mmu.c index fcfe6b055558..bacb0cfa3602 100644 --- a/arch/powerpc/kvm/book3s_hv_rm_mmu.c +++ b/arch/powerpc/kvm/book3s_hv_rm_mmu.c | |||
@@ -110,39 +110,6 @@ long kvmppc_h_enter(struct kvm_vcpu *vcpu, unsigned long flags, | |||
110 | return H_SUCCESS; | 110 | return H_SUCCESS; |
111 | } | 111 | } |
112 | 112 | ||
113 | static unsigned long compute_tlbie_rb(unsigned long v, unsigned long r, | ||
114 | unsigned long pte_index) | ||
115 | { | ||
116 | unsigned long rb, va_low; | ||
117 | |||
118 | rb = (v & ~0x7fUL) << 16; /* AVA field */ | ||
119 | va_low = pte_index >> 3; | ||
120 | if (v & HPTE_V_SECONDARY) | ||
121 | va_low = ~va_low; | ||
122 | /* xor vsid from AVA */ | ||
123 | if (!(v & HPTE_V_1TB_SEG)) | ||
124 | va_low ^= v >> 12; | ||
125 | else | ||
126 | va_low ^= v >> 24; | ||
127 | va_low &= 0x7ff; | ||
128 | if (v & HPTE_V_LARGE) { | ||
129 | rb |= 1; /* L field */ | ||
130 | if (cpu_has_feature(CPU_FTR_ARCH_206) && | ||
131 | (r & 0xff000)) { | ||
132 | /* non-16MB large page, must be 64k */ | ||
133 | /* (masks depend on page size) */ | ||
134 | rb |= 0x1000; /* page encoding in LP field */ | ||
135 | rb |= (va_low & 0x7f) << 16; /* 7b of VA in AVA/LP field */ | ||
136 | rb |= (va_low & 0xfe); /* AVAL field (P7 doesn't seem to care) */ | ||
137 | } | ||
138 | } else { | ||
139 | /* 4kB page */ | ||
140 | rb |= (va_low & 0x7ff) << 12; /* remaining 11b of VA */ | ||
141 | } | ||
142 | rb |= (v >> 54) & 0x300; /* B field */ | ||
143 | return rb; | ||
144 | } | ||
145 | |||
146 | #define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token)) | 113 | #define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token)) |
147 | 114 | ||
148 | static inline int try_lock_tlbie(unsigned int *lock) | 115 | static inline int try_lock_tlbie(unsigned int *lock) |
diff --git a/arch/powerpc/kvm/book3s_hv_rmhandlers.S b/arch/powerpc/kvm/book3s_hv_rmhandlers.S index de2950135e6e..44d8829334ab 100644 --- a/arch/powerpc/kvm/book3s_hv_rmhandlers.S +++ b/arch/powerpc/kvm/book3s_hv_rmhandlers.S | |||
@@ -20,7 +20,10 @@ | |||
20 | #include <asm/ppc_asm.h> | 20 | #include <asm/ppc_asm.h> |
21 | #include <asm/kvm_asm.h> | 21 | #include <asm/kvm_asm.h> |
22 | #include <asm/reg.h> | 22 | #include <asm/reg.h> |
23 | #include <asm/mmu.h> | ||
23 | #include <asm/page.h> | 24 | #include <asm/page.h> |
25 | #include <asm/ptrace.h> | ||
26 | #include <asm/hvcall.h> | ||
24 | #include <asm/asm-offsets.h> | 27 | #include <asm/asm-offsets.h> |
25 | #include <asm/exception-64s.h> | 28 | #include <asm/exception-64s.h> |
26 | 29 | ||
@@ -49,7 +52,7 @@ kvmppc_skip_Hinterrupt: | |||
49 | b . | 52 | b . |
50 | 53 | ||
51 | /* | 54 | /* |
52 | * Call kvmppc_handler_trampoline_enter in real mode. | 55 | * Call kvmppc_hv_entry in real mode. |
53 | * Must be called with interrupts hard-disabled. | 56 | * Must be called with interrupts hard-disabled. |
54 | * | 57 | * |
55 | * Input Registers: | 58 | * Input Registers: |
@@ -89,6 +92,12 @@ _GLOBAL(kvmppc_hv_entry_trampoline) | |||
89 | kvm_start_guest: | 92 | kvm_start_guest: |
90 | ld r1,PACAEMERGSP(r13) | 93 | ld r1,PACAEMERGSP(r13) |
91 | subi r1,r1,STACK_FRAME_OVERHEAD | 94 | subi r1,r1,STACK_FRAME_OVERHEAD |
95 | ld r2,PACATOC(r13) | ||
96 | |||
97 | /* were we napping due to cede? */ | ||
98 | lbz r0,HSTATE_NAPPING(r13) | ||
99 | cmpwi r0,0 | ||
100 | bne kvm_end_cede | ||
92 | 101 | ||
93 | /* get vcpu pointer */ | 102 | /* get vcpu pointer */ |
94 | ld r4, HSTATE_KVM_VCPU(r13) | 103 | ld r4, HSTATE_KVM_VCPU(r13) |
@@ -276,15 +285,9 @@ END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201) | |||
276 | cmpwi r0,0 | 285 | cmpwi r0,0 |
277 | beq 20b | 286 | beq 20b |
278 | 287 | ||
279 | /* Set LPCR. Set the MER bit if there is a pending external irq. */ | 288 | /* Set LPCR and RMOR. */ |
280 | 10: ld r8,KVM_LPCR(r9) | 289 | 10: ld r8,KVM_LPCR(r9) |
281 | ld r0,VCPU_PENDING_EXC(r4) | 290 | mtspr SPRN_LPCR,r8 |
282 | li r7,(1 << BOOK3S_IRQPRIO_EXTERNAL) | ||
283 | oris r7,r7,(1 << BOOK3S_IRQPRIO_EXTERNAL_LEVEL)@h | ||
284 | and. r0,r0,r7 | ||
285 | beq 11f | ||
286 | ori r8,r8,LPCR_MER | ||
287 | 11: mtspr SPRN_LPCR,r8 | ||
288 | ld r8,KVM_RMOR(r9) | 291 | ld r8,KVM_RMOR(r9) |
289 | mtspr SPRN_RMOR,r8 | 292 | mtspr SPRN_RMOR,r8 |
290 | isync | 293 | isync |
@@ -448,19 +451,50 @@ toc_tlbie_lock: | |||
448 | mtctr r6 | 451 | mtctr r6 |
449 | mtxer r7 | 452 | mtxer r7 |
450 | 453 | ||
451 | /* Move SRR0 and SRR1 into the respective regs */ | 454 | kvmppc_cede_reentry: /* r4 = vcpu, r13 = paca */ |
452 | ld r6, VCPU_SRR0(r4) | 455 | ld r6, VCPU_SRR0(r4) |
453 | ld r7, VCPU_SRR1(r4) | 456 | ld r7, VCPU_SRR1(r4) |
454 | mtspr SPRN_SRR0, r6 | ||
455 | mtspr SPRN_SRR1, r7 | ||
456 | |||
457 | ld r10, VCPU_PC(r4) | 457 | ld r10, VCPU_PC(r4) |
458 | ld r11, VCPU_MSR(r4) /* r11 = vcpu->arch.msr & ~MSR_HV */ | ||
458 | 459 | ||
459 | ld r11, VCPU_MSR(r4) /* r10 = vcpu->arch.msr & ~MSR_HV */ | ||
460 | rldicl r11, r11, 63 - MSR_HV_LG, 1 | 460 | rldicl r11, r11, 63 - MSR_HV_LG, 1 |
461 | rotldi r11, r11, 1 + MSR_HV_LG | 461 | rotldi r11, r11, 1 + MSR_HV_LG |
462 | ori r11, r11, MSR_ME | 462 | ori r11, r11, MSR_ME |
463 | 463 | ||
464 | /* Check if we can deliver an external or decrementer interrupt now */ | ||
465 | ld r0,VCPU_PENDING_EXC(r4) | ||
466 | li r8,(1 << BOOK3S_IRQPRIO_EXTERNAL) | ||
467 | oris r8,r8,(1 << BOOK3S_IRQPRIO_EXTERNAL_LEVEL)@h | ||
468 | and r0,r0,r8 | ||
469 | cmpdi cr1,r0,0 | ||
470 | andi. r0,r11,MSR_EE | ||
471 | beq cr1,11f | ||
472 | BEGIN_FTR_SECTION | ||
473 | mfspr r8,SPRN_LPCR | ||
474 | ori r8,r8,LPCR_MER | ||
475 | mtspr SPRN_LPCR,r8 | ||
476 | isync | ||
477 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206) | ||
478 | beq 5f | ||
479 | li r0,BOOK3S_INTERRUPT_EXTERNAL | ||
480 | 12: mr r6,r10 | ||
481 | mr r10,r0 | ||
482 | mr r7,r11 | ||
483 | li r11,(MSR_ME << 1) | 1 /* synthesize MSR_SF | MSR_ME */ | ||
484 | rotldi r11,r11,63 | ||
485 | b 5f | ||
486 | 11: beq 5f | ||
487 | mfspr r0,SPRN_DEC | ||
488 | cmpwi r0,0 | ||
489 | li r0,BOOK3S_INTERRUPT_DECREMENTER | ||
490 | blt 12b | ||
491 | |||
492 | /* Move SRR0 and SRR1 into the respective regs */ | ||
493 | 5: mtspr SPRN_SRR0, r6 | ||
494 | mtspr SPRN_SRR1, r7 | ||
495 | li r0,0 | ||
496 | stb r0,VCPU_CEDED(r4) /* cancel cede */ | ||
497 | |||
464 | fast_guest_return: | 498 | fast_guest_return: |
465 | mtspr SPRN_HSRR0,r10 | 499 | mtspr SPRN_HSRR0,r10 |
466 | mtspr SPRN_HSRR1,r11 | 500 | mtspr SPRN_HSRR1,r11 |
@@ -574,21 +608,20 @@ kvmppc_interrupt: | |||
574 | /* See if this is something we can handle in real mode */ | 608 | /* See if this is something we can handle in real mode */ |
575 | cmpwi r12,BOOK3S_INTERRUPT_SYSCALL | 609 | cmpwi r12,BOOK3S_INTERRUPT_SYSCALL |
576 | beq hcall_try_real_mode | 610 | beq hcall_try_real_mode |
577 | hcall_real_cont: | ||
578 | 611 | ||
579 | /* Check for mediated interrupts (could be done earlier really ...) */ | 612 | /* Check for mediated interrupts (could be done earlier really ...) */ |
580 | BEGIN_FTR_SECTION | 613 | BEGIN_FTR_SECTION |
581 | cmpwi r12,BOOK3S_INTERRUPT_EXTERNAL | 614 | cmpwi r12,BOOK3S_INTERRUPT_EXTERNAL |
582 | bne+ 1f | 615 | bne+ 1f |
583 | ld r5,VCPU_KVM(r9) | ||
584 | ld r5,KVM_LPCR(r5) | ||
585 | andi. r0,r11,MSR_EE | 616 | andi. r0,r11,MSR_EE |
586 | beq 1f | 617 | beq 1f |
618 | mfspr r5,SPRN_LPCR | ||
587 | andi. r0,r5,LPCR_MER | 619 | andi. r0,r5,LPCR_MER |
588 | bne bounce_ext_interrupt | 620 | bne bounce_ext_interrupt |
589 | 1: | 621 | 1: |
590 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206) | 622 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206) |
591 | 623 | ||
624 | hcall_real_cont: /* r9 = vcpu, r12 = trap, r13 = paca */ | ||
592 | /* Save DEC */ | 625 | /* Save DEC */ |
593 | mfspr r5,SPRN_DEC | 626 | mfspr r5,SPRN_DEC |
594 | mftb r6 | 627 | mftb r6 |
@@ -682,7 +715,7 @@ END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_201) | |||
682 | slbia | 715 | slbia |
683 | ptesync | 716 | ptesync |
684 | 717 | ||
685 | hdec_soon: | 718 | hdec_soon: /* r9 = vcpu, r12 = trap, r13 = paca */ |
686 | BEGIN_FTR_SECTION | 719 | BEGIN_FTR_SECTION |
687 | b 32f | 720 | b 32f |
688 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201) | 721 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201) |
@@ -700,6 +733,7 @@ END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201) | |||
700 | addi r0,r3,0x100 | 733 | addi r0,r3,0x100 |
701 | stwcx. r0,0,r6 | 734 | stwcx. r0,0,r6 |
702 | bne 41b | 735 | bne 41b |
736 | lwsync | ||
703 | 737 | ||
704 | /* | 738 | /* |
705 | * At this point we have an interrupt that we have to pass | 739 | * At this point we have an interrupt that we have to pass |
@@ -713,18 +747,39 @@ END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201) | |||
713 | * interrupt, since the other threads will already be on their | 747 | * interrupt, since the other threads will already be on their |
714 | * way here in that case. | 748 | * way here in that case. |
715 | */ | 749 | */ |
750 | cmpwi r3,0x100 /* Are we the first here? */ | ||
751 | bge 43f | ||
752 | cmpwi r3,1 /* Are any other threads in the guest? */ | ||
753 | ble 43f | ||
716 | cmpwi r12,BOOK3S_INTERRUPT_HV_DECREMENTER | 754 | cmpwi r12,BOOK3S_INTERRUPT_HV_DECREMENTER |
717 | beq 40f | 755 | beq 40f |
718 | cmpwi r3,0x100 /* Are we the first here? */ | ||
719 | bge 40f | ||
720 | cmpwi r3,1 | ||
721 | ble 40f | ||
722 | li r0,0 | 756 | li r0,0 |
723 | mtspr SPRN_HDEC,r0 | 757 | mtspr SPRN_HDEC,r0 |
724 | 40: | 758 | 40: |
759 | /* | ||
760 | * Send an IPI to any napping threads, since an HDEC interrupt | ||
761 | * doesn't wake CPUs up from nap. | ||
762 | */ | ||
763 | lwz r3,VCORE_NAPPING_THREADS(r5) | ||
764 | lwz r4,VCPU_PTID(r9) | ||
765 | li r0,1 | ||
766 | sldi r0,r0,r4 | ||
767 | andc. r3,r3,r0 /* no sense IPI'ing ourselves */ | ||
768 | beq 43f | ||
769 | mulli r4,r4,PACA_SIZE /* get paca for thread 0 */ | ||
770 | subf r6,r4,r13 | ||
771 | 42: andi. r0,r3,1 | ||
772 | beq 44f | ||
773 | ld r8,HSTATE_XICS_PHYS(r6) /* get thread's XICS reg addr */ | ||
774 | li r0,IPI_PRIORITY | ||
775 | li r7,XICS_QIRR | ||
776 | stbcix r0,r7,r8 /* trigger the IPI */ | ||
777 | 44: srdi. r3,r3,1 | ||
778 | addi r6,r6,PACA_SIZE | ||
779 | bne 42b | ||
725 | 780 | ||
726 | /* Secondary threads wait for primary to do partition switch */ | 781 | /* Secondary threads wait for primary to do partition switch */ |
727 | ld r4,VCPU_KVM(r9) /* pointer to struct kvm */ | 782 | 43: ld r4,VCPU_KVM(r9) /* pointer to struct kvm */ |
728 | ld r5,HSTATE_KVM_VCORE(r13) | 783 | ld r5,HSTATE_KVM_VCORE(r13) |
729 | lwz r3,VCPU_PTID(r9) | 784 | lwz r3,VCPU_PTID(r9) |
730 | cmpwi r3,0 | 785 | cmpwi r3,0 |
@@ -1077,7 +1132,6 @@ hcall_try_real_mode: | |||
1077 | hcall_real_fallback: | 1132 | hcall_real_fallback: |
1078 | li r12,BOOK3S_INTERRUPT_SYSCALL | 1133 | li r12,BOOK3S_INTERRUPT_SYSCALL |
1079 | ld r9, HSTATE_KVM_VCPU(r13) | 1134 | ld r9, HSTATE_KVM_VCPU(r13) |
1080 | ld r11, VCPU_MSR(r9) | ||
1081 | 1135 | ||
1082 | b hcall_real_cont | 1136 | b hcall_real_cont |
1083 | 1137 | ||
@@ -1139,7 +1193,7 @@ hcall_real_table: | |||
1139 | .long 0 /* 0xd4 */ | 1193 | .long 0 /* 0xd4 */ |
1140 | .long 0 /* 0xd8 */ | 1194 | .long 0 /* 0xd8 */ |
1141 | .long 0 /* 0xdc */ | 1195 | .long 0 /* 0xdc */ |
1142 | .long 0 /* 0xe0 */ | 1196 | .long .kvmppc_h_cede - hcall_real_table |
1143 | .long 0 /* 0xe4 */ | 1197 | .long 0 /* 0xe4 */ |
1144 | .long 0 /* 0xe8 */ | 1198 | .long 0 /* 0xe8 */ |
1145 | .long 0 /* 0xec */ | 1199 | .long 0 /* 0xec */ |
@@ -1168,7 +1222,8 @@ bounce_ext_interrupt: | |||
1168 | mtspr SPRN_SRR0,r10 | 1222 | mtspr SPRN_SRR0,r10 |
1169 | mtspr SPRN_SRR1,r11 | 1223 | mtspr SPRN_SRR1,r11 |
1170 | li r10,BOOK3S_INTERRUPT_EXTERNAL | 1224 | li r10,BOOK3S_INTERRUPT_EXTERNAL |
1171 | LOAD_REG_IMMEDIATE(r11,MSR_SF | MSR_ME); | 1225 | li r11,(MSR_ME << 1) | 1 /* synthesize MSR_SF | MSR_ME */ |
1226 | rotldi r11,r11,63 | ||
1172 | b fast_guest_return | 1227 | b fast_guest_return |
1173 | 1228 | ||
1174 | _GLOBAL(kvmppc_h_set_dabr) | 1229 | _GLOBAL(kvmppc_h_set_dabr) |
@@ -1177,6 +1232,178 @@ _GLOBAL(kvmppc_h_set_dabr) | |||
1177 | li r3,0 | 1232 | li r3,0 |
1178 | blr | 1233 | blr |
1179 | 1234 | ||
1235 | _GLOBAL(kvmppc_h_cede) | ||
1236 | ori r11,r11,MSR_EE | ||
1237 | std r11,VCPU_MSR(r3) | ||
1238 | li r0,1 | ||
1239 | stb r0,VCPU_CEDED(r3) | ||
1240 | sync /* order setting ceded vs. testing prodded */ | ||
1241 | lbz r5,VCPU_PRODDED(r3) | ||
1242 | cmpwi r5,0 | ||
1243 | bne 1f | ||
1244 | li r0,0 /* set trap to 0 to say hcall is handled */ | ||
1245 | stw r0,VCPU_TRAP(r3) | ||
1246 | li r0,H_SUCCESS | ||
1247 | std r0,VCPU_GPR(r3)(r3) | ||
1248 | BEGIN_FTR_SECTION | ||
1249 | b 2f /* just send it up to host on 970 */ | ||
1250 | END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_206) | ||
1251 | |||
1252 | /* | ||
1253 | * Set our bit in the bitmask of napping threads unless all the | ||
1254 | * other threads are already napping, in which case we send this | ||
1255 | * up to the host. | ||
1256 | */ | ||
1257 | ld r5,HSTATE_KVM_VCORE(r13) | ||
1258 | lwz r6,VCPU_PTID(r3) | ||
1259 | lwz r8,VCORE_ENTRY_EXIT(r5) | ||
1260 | clrldi r8,r8,56 | ||
1261 | li r0,1 | ||
1262 | sld r0,r0,r6 | ||
1263 | addi r6,r5,VCORE_NAPPING_THREADS | ||
1264 | 31: lwarx r4,0,r6 | ||
1265 | or r4,r4,r0 | ||
1266 | PPC_POPCNTW(r7,r4) | ||
1267 | cmpw r7,r8 | ||
1268 | bge 2f | ||
1269 | stwcx. r4,0,r6 | ||
1270 | bne 31b | ||
1271 | li r0,1 | ||
1272 | stb r0,HSTATE_NAPPING(r13) | ||
1273 | /* order napping_threads update vs testing entry_exit_count */ | ||
1274 | lwsync | ||
1275 | mr r4,r3 | ||
1276 | lwz r7,VCORE_ENTRY_EXIT(r5) | ||
1277 | cmpwi r7,0x100 | ||
1278 | bge 33f /* another thread already exiting */ | ||
1279 | |||
1280 | /* | ||
1281 | * Although not specifically required by the architecture, POWER7 | ||
1282 | * preserves the following registers in nap mode, even if an SMT mode | ||
1283 | * switch occurs: SLB entries, PURR, SPURR, AMOR, UAMOR, AMR, SPRG0-3, | ||
1284 | * DAR, DSISR, DABR, DABRX, DSCR, PMCx, MMCRx, SIAR, SDAR. | ||
1285 | */ | ||
1286 | /* Save non-volatile GPRs */ | ||
1287 | std r14, VCPU_GPR(r14)(r3) | ||
1288 | std r15, VCPU_GPR(r15)(r3) | ||
1289 | std r16, VCPU_GPR(r16)(r3) | ||
1290 | std r17, VCPU_GPR(r17)(r3) | ||
1291 | std r18, VCPU_GPR(r18)(r3) | ||
1292 | std r19, VCPU_GPR(r19)(r3) | ||
1293 | std r20, VCPU_GPR(r20)(r3) | ||
1294 | std r21, VCPU_GPR(r21)(r3) | ||
1295 | std r22, VCPU_GPR(r22)(r3) | ||
1296 | std r23, VCPU_GPR(r23)(r3) | ||
1297 | std r24, VCPU_GPR(r24)(r3) | ||
1298 | std r25, VCPU_GPR(r25)(r3) | ||
1299 | std r26, VCPU_GPR(r26)(r3) | ||
1300 | std r27, VCPU_GPR(r27)(r3) | ||
1301 | std r28, VCPU_GPR(r28)(r3) | ||
1302 | std r29, VCPU_GPR(r29)(r3) | ||
1303 | std r30, VCPU_GPR(r30)(r3) | ||
1304 | std r31, VCPU_GPR(r31)(r3) | ||
1305 | |||
1306 | /* save FP state */ | ||
1307 | bl .kvmppc_save_fp | ||
1308 | |||
1309 | /* | ||
1310 | * Take a nap until a decrementer or external interrupt occurs, | ||
1311 | * with PECE1 (wake on decr) and PECE0 (wake on external) set in LPCR | ||
1312 | */ | ||
1313 | li r0,0x80 | ||
1314 | stb r0,PACAPROCSTART(r13) | ||
1315 | mfspr r5,SPRN_LPCR | ||
1316 | ori r5,r5,LPCR_PECE0 | LPCR_PECE1 | ||
1317 | mtspr SPRN_LPCR,r5 | ||
1318 | isync | ||
1319 | li r0, 0 | ||
1320 | std r0, HSTATE_SCRATCH0(r13) | ||
1321 | ptesync | ||
1322 | ld r0, HSTATE_SCRATCH0(r13) | ||
1323 | 1: cmpd r0, r0 | ||
1324 | bne 1b | ||
1325 | nap | ||
1326 | b . | ||
1327 | |||
1328 | kvm_end_cede: | ||
1329 | /* Woken by external or decrementer interrupt */ | ||
1330 | ld r1, HSTATE_HOST_R1(r13) | ||
1331 | ld r2, PACATOC(r13) | ||
1332 | |||
1333 | /* If we're a secondary thread and we got here by an IPI, ack it */ | ||
1334 | ld r4,HSTATE_KVM_VCPU(r13) | ||
1335 | lwz r3,VCPU_PTID(r4) | ||
1336 | cmpwi r3,0 | ||
1337 | beq 27f | ||
1338 | mfspr r3,SPRN_SRR1 | ||
1339 | rlwinm r3,r3,44-31,0x7 /* extract wake reason field */ | ||
1340 | cmpwi r3,4 /* was it an external interrupt? */ | ||
1341 | bne 27f | ||
1342 | ld r5, HSTATE_XICS_PHYS(r13) | ||
1343 | li r0,0xff | ||
1344 | li r6,XICS_QIRR | ||
1345 | li r7,XICS_XIRR | ||
1346 | lwzcix r8,r5,r7 /* ack the interrupt */ | ||
1347 | sync | ||
1348 | stbcix r0,r5,r6 /* clear it */ | ||
1349 | stwcix r8,r5,r7 /* EOI it */ | ||
1350 | 27: | ||
1351 | /* load up FP state */ | ||
1352 | bl kvmppc_load_fp | ||
1353 | |||
1354 | /* Load NV GPRS */ | ||
1355 | ld r14, VCPU_GPR(r14)(r4) | ||
1356 | ld r15, VCPU_GPR(r15)(r4) | ||
1357 | ld r16, VCPU_GPR(r16)(r4) | ||
1358 | ld r17, VCPU_GPR(r17)(r4) | ||
1359 | ld r18, VCPU_GPR(r18)(r4) | ||
1360 | ld r19, VCPU_GPR(r19)(r4) | ||
1361 | ld r20, VCPU_GPR(r20)(r4) | ||
1362 | ld r21, VCPU_GPR(r21)(r4) | ||
1363 | ld r22, VCPU_GPR(r22)(r4) | ||
1364 | ld r23, VCPU_GPR(r23)(r4) | ||
1365 | ld r24, VCPU_GPR(r24)(r4) | ||
1366 | ld r25, VCPU_GPR(r25)(r4) | ||
1367 | ld r26, VCPU_GPR(r26)(r4) | ||
1368 | ld r27, VCPU_GPR(r27)(r4) | ||
1369 | ld r28, VCPU_GPR(r28)(r4) | ||
1370 | ld r29, VCPU_GPR(r29)(r4) | ||
1371 | ld r30, VCPU_GPR(r30)(r4) | ||
1372 | ld r31, VCPU_GPR(r31)(r4) | ||
1373 | |||
1374 | /* clear our bit in vcore->napping_threads */ | ||
1375 | 33: ld r5,HSTATE_KVM_VCORE(r13) | ||
1376 | lwz r3,VCPU_PTID(r4) | ||
1377 | li r0,1 | ||
1378 | sld r0,r0,r3 | ||
1379 | addi r6,r5,VCORE_NAPPING_THREADS | ||
1380 | 32: lwarx r7,0,r6 | ||
1381 | andc r7,r7,r0 | ||
1382 | stwcx. r7,0,r6 | ||
1383 | bne 32b | ||
1384 | li r0,0 | ||
1385 | stb r0,HSTATE_NAPPING(r13) | ||
1386 | |||
1387 | /* see if any other thread is already exiting */ | ||
1388 | lwz r0,VCORE_ENTRY_EXIT(r5) | ||
1389 | cmpwi r0,0x100 | ||
1390 | blt kvmppc_cede_reentry /* if not go back to guest */ | ||
1391 | |||
1392 | /* some threads are exiting, so go to the guest exit path */ | ||
1393 | b hcall_real_fallback | ||
1394 | |||
1395 | /* cede when already previously prodded case */ | ||
1396 | 1: li r0,0 | ||
1397 | stb r0,VCPU_PRODDED(r3) | ||
1398 | sync /* order testing prodded vs. clearing ceded */ | ||
1399 | stb r0,VCPU_CEDED(r3) | ||
1400 | li r3,H_SUCCESS | ||
1401 | blr | ||
1402 | |||
1403 | /* we've ceded but we want to give control to the host */ | ||
1404 | 2: li r3,H_TOO_HARD | ||
1405 | blr | ||
1406 | |||
1180 | secondary_too_late: | 1407 | secondary_too_late: |
1181 | ld r5,HSTATE_KVM_VCORE(r13) | 1408 | ld r5,HSTATE_KVM_VCORE(r13) |
1182 | HMT_LOW | 1409 | HMT_LOW |
@@ -1194,14 +1421,20 @@ secondary_too_late: | |||
1194 | slbmte r6,r5 | 1421 | slbmte r6,r5 |
1195 | 1: addi r11,r11,16 | 1422 | 1: addi r11,r11,16 |
1196 | .endr | 1423 | .endr |
1197 | b 50f | ||
1198 | 1424 | ||
1199 | secondary_nap: | 1425 | secondary_nap: |
1200 | /* Clear any pending IPI */ | 1426 | /* Clear any pending IPI - assume we're a secondary thread */ |
1201 | 50: ld r5, HSTATE_XICS_PHYS(r13) | 1427 | ld r5, HSTATE_XICS_PHYS(r13) |
1428 | li r7, XICS_XIRR | ||
1429 | lwzcix r3, r5, r7 /* ack any pending interrupt */ | ||
1430 | rlwinm. r0, r3, 0, 0xffffff /* any pending? */ | ||
1431 | beq 37f | ||
1432 | sync | ||
1202 | li r0, 0xff | 1433 | li r0, 0xff |
1203 | li r6, XICS_QIRR | 1434 | li r6, XICS_QIRR |
1204 | stbcix r0, r5, r6 | 1435 | stbcix r0, r5, r6 /* clear the IPI */ |
1436 | stwcix r3, r5, r7 /* EOI it */ | ||
1437 | 37: sync | ||
1205 | 1438 | ||
1206 | /* increment the nap count and then go to nap mode */ | 1439 | /* increment the nap count and then go to nap mode */ |
1207 | ld r4, HSTATE_KVM_VCORE(r13) | 1440 | ld r4, HSTATE_KVM_VCORE(r13) |
@@ -1211,13 +1444,12 @@ secondary_nap: | |||
1211 | addi r3, r3, 1 | 1444 | addi r3, r3, 1 |
1212 | stwcx. r3, 0, r4 | 1445 | stwcx. r3, 0, r4 |
1213 | bne 51b | 1446 | bne 51b |
1214 | isync | ||
1215 | 1447 | ||
1448 | li r3, LPCR_PECE0 | ||
1216 | mfspr r4, SPRN_LPCR | 1449 | mfspr r4, SPRN_LPCR |
1217 | li r0, LPCR_PECE | 1450 | rlwimi r4, r3, 0, LPCR_PECE0 | LPCR_PECE1 |
1218 | andc r4, r4, r0 | ||
1219 | ori r4, r4, LPCR_PECE0 /* exit nap on interrupt */ | ||
1220 | mtspr SPRN_LPCR, r4 | 1451 | mtspr SPRN_LPCR, r4 |
1452 | isync | ||
1221 | li r0, 0 | 1453 | li r0, 0 |
1222 | std r0, HSTATE_SCRATCH0(r13) | 1454 | std r0, HSTATE_SCRATCH0(r13) |
1223 | ptesync | 1455 | ptesync |
diff --git a/arch/powerpc/kvm/book3s_interrupts.S b/arch/powerpc/kvm/book3s_interrupts.S index c54b0e30cf3f..0a8515a5c042 100644 --- a/arch/powerpc/kvm/book3s_interrupts.S +++ b/arch/powerpc/kvm/book3s_interrupts.S | |||
@@ -29,27 +29,11 @@ | |||
29 | #define ULONG_SIZE 8 | 29 | #define ULONG_SIZE 8 |
30 | #define FUNC(name) GLUE(.,name) | 30 | #define FUNC(name) GLUE(.,name) |
31 | 31 | ||
32 | #define GET_SHADOW_VCPU_R13 | ||
33 | |||
34 | #define DISABLE_INTERRUPTS \ | ||
35 | mfmsr r0; \ | ||
36 | rldicl r0,r0,48,1; \ | ||
37 | rotldi r0,r0,16; \ | ||
38 | mtmsrd r0,1; \ | ||
39 | |||
40 | #elif defined(CONFIG_PPC_BOOK3S_32) | 32 | #elif defined(CONFIG_PPC_BOOK3S_32) |
41 | 33 | ||
42 | #define ULONG_SIZE 4 | 34 | #define ULONG_SIZE 4 |
43 | #define FUNC(name) name | 35 | #define FUNC(name) name |
44 | 36 | ||
45 | #define GET_SHADOW_VCPU_R13 \ | ||
46 | lwz r13, (THREAD + THREAD_KVM_SVCPU)(r2) | ||
47 | |||
48 | #define DISABLE_INTERRUPTS \ | ||
49 | mfmsr r0; \ | ||
50 | rlwinm r0,r0,0,17,15; \ | ||
51 | mtmsr r0; \ | ||
52 | |||
53 | #endif /* CONFIG_PPC_BOOK3S_XX */ | 37 | #endif /* CONFIG_PPC_BOOK3S_XX */ |
54 | 38 | ||
55 | 39 | ||
@@ -108,44 +92,17 @@ kvm_start_entry: | |||
108 | 92 | ||
109 | kvm_start_lightweight: | 93 | kvm_start_lightweight: |
110 | 94 | ||
111 | GET_SHADOW_VCPU_R13 | ||
112 | PPC_LL r3, VCPU_HIGHMEM_HANDLER(r4) | ||
113 | PPC_STL r3, HSTATE_VMHANDLER(r13) | ||
114 | |||
115 | PPC_LL r10, VCPU_SHADOW_MSR(r4) /* r10 = vcpu->arch.shadow_msr */ | ||
116 | |||
117 | DISABLE_INTERRUPTS | ||
118 | |||
119 | #ifdef CONFIG_PPC_BOOK3S_64 | 95 | #ifdef CONFIG_PPC_BOOK3S_64 |
120 | /* Some guests may need to have dcbz set to 32 byte length. | ||
121 | * | ||
122 | * Usually we ensure that by patching the guest's instructions | ||
123 | * to trap on dcbz and emulate it in the hypervisor. | ||
124 | * | ||
125 | * If we can, we should tell the CPU to use 32 byte dcbz though, | ||
126 | * because that's a lot faster. | ||
127 | */ | ||
128 | |||
129 | PPC_LL r3, VCPU_HFLAGS(r4) | 96 | PPC_LL r3, VCPU_HFLAGS(r4) |
130 | rldicl. r3, r3, 0, 63 /* CR = ((r3 & 1) == 0) */ | 97 | rldicl r3, r3, 0, 63 /* r3 &= 1 */ |
131 | beq no_dcbz32_on | 98 | stb r3, HSTATE_RESTORE_HID5(r13) |
132 | |||
133 | mfspr r3,SPRN_HID5 | ||
134 | ori r3, r3, 0x80 /* XXX HID5_dcbz32 = 0x80 */ | ||
135 | mtspr SPRN_HID5,r3 | ||
136 | |||
137 | no_dcbz32_on: | ||
138 | |||
139 | #endif /* CONFIG_PPC_BOOK3S_64 */ | 99 | #endif /* CONFIG_PPC_BOOK3S_64 */ |
140 | 100 | ||
141 | PPC_LL r6, VCPU_RMCALL(r4) | 101 | PPC_LL r4, VCPU_SHADOW_MSR(r4) /* get shadow_msr */ |
142 | mtctr r6 | ||
143 | |||
144 | PPC_LL r3, VCPU_TRAMPOLINE_ENTER(r4) | ||
145 | LOAD_REG_IMMEDIATE(r4, MSR_KERNEL & ~(MSR_IR | MSR_DR)) | ||
146 | 102 | ||
147 | /* Jump to segment patching handler and into our guest */ | 103 | /* Jump to segment patching handler and into our guest */ |
148 | bctr | 104 | bl FUNC(kvmppc_entry_trampoline) |
105 | nop | ||
149 | 106 | ||
150 | /* | 107 | /* |
151 | * This is the handler in module memory. It gets jumped at from the | 108 | * This is the handler in module memory. It gets jumped at from the |
@@ -170,21 +127,6 @@ kvmppc_handler_highmem: | |||
170 | /* R7 = vcpu */ | 127 | /* R7 = vcpu */ |
171 | PPC_LL r7, GPR4(r1) | 128 | PPC_LL r7, GPR4(r1) |
172 | 129 | ||
173 | #ifdef CONFIG_PPC_BOOK3S_64 | ||
174 | |||
175 | PPC_LL r5, VCPU_HFLAGS(r7) | ||
176 | rldicl. r5, r5, 0, 63 /* CR = ((r5 & 1) == 0) */ | ||
177 | beq no_dcbz32_off | ||
178 | |||
179 | li r4, 0 | ||
180 | mfspr r5,SPRN_HID5 | ||
181 | rldimi r5,r4,6,56 | ||
182 | mtspr SPRN_HID5,r5 | ||
183 | |||
184 | no_dcbz32_off: | ||
185 | |||
186 | #endif /* CONFIG_PPC_BOOK3S_64 */ | ||
187 | |||
188 | PPC_STL r14, VCPU_GPR(r14)(r7) | 130 | PPC_STL r14, VCPU_GPR(r14)(r7) |
189 | PPC_STL r15, VCPU_GPR(r15)(r7) | 131 | PPC_STL r15, VCPU_GPR(r15)(r7) |
190 | PPC_STL r16, VCPU_GPR(r16)(r7) | 132 | PPC_STL r16, VCPU_GPR(r16)(r7) |
@@ -204,67 +146,6 @@ no_dcbz32_off: | |||
204 | PPC_STL r30, VCPU_GPR(r30)(r7) | 146 | PPC_STL r30, VCPU_GPR(r30)(r7) |
205 | PPC_STL r31, VCPU_GPR(r31)(r7) | 147 | PPC_STL r31, VCPU_GPR(r31)(r7) |
206 | 148 | ||
207 | /* Restore host msr -> SRR1 */ | ||
208 | PPC_LL r6, VCPU_HOST_MSR(r7) | ||
209 | |||
210 | /* | ||
211 | * For some interrupts, we need to call the real Linux | ||
212 | * handler, so it can do work for us. This has to happen | ||
213 | * as if the interrupt arrived from the kernel though, | ||
214 | * so let's fake it here where most state is restored. | ||
215 | * | ||
216 | * Call Linux for hardware interrupts/decrementer | ||
217 | * r3 = address of interrupt handler (exit reason) | ||
218 | */ | ||
219 | |||
220 | cmpwi r12, BOOK3S_INTERRUPT_EXTERNAL | ||
221 | beq call_linux_handler | ||
222 | cmpwi r12, BOOK3S_INTERRUPT_DECREMENTER | ||
223 | beq call_linux_handler | ||
224 | cmpwi r12, BOOK3S_INTERRUPT_PERFMON | ||
225 | beq call_linux_handler | ||
226 | |||
227 | /* Back to EE=1 */ | ||
228 | mtmsr r6 | ||
229 | sync | ||
230 | b kvm_return_point | ||
231 | |||
232 | call_linux_handler: | ||
233 | |||
234 | /* | ||
235 | * If we land here we need to jump back to the handler we | ||
236 | * came from. | ||
237 | * | ||
238 | * We have a page that we can access from real mode, so let's | ||
239 | * jump back to that and use it as a trampoline to get back into the | ||
240 | * interrupt handler! | ||
241 | * | ||
242 | * R3 still contains the exit code, | ||
243 | * R5 VCPU_HOST_RETIP and | ||
244 | * R6 VCPU_HOST_MSR | ||
245 | */ | ||
246 | |||
247 | /* Restore host IP -> SRR0 */ | ||
248 | PPC_LL r5, VCPU_HOST_RETIP(r7) | ||
249 | |||
250 | /* XXX Better move to a safe function? | ||
251 | * What if we get an HTAB flush in between mtsrr0 and mtsrr1? */ | ||
252 | |||
253 | mtlr r12 | ||
254 | |||
255 | PPC_LL r4, VCPU_TRAMPOLINE_LOWMEM(r7) | ||
256 | mtsrr0 r4 | ||
257 | LOAD_REG_IMMEDIATE(r3, MSR_KERNEL & ~(MSR_IR | MSR_DR)) | ||
258 | mtsrr1 r3 | ||
259 | |||
260 | RFI | ||
261 | |||
262 | .global kvm_return_point | ||
263 | kvm_return_point: | ||
264 | |||
265 | /* Jump back to lightweight entry if we're supposed to */ | ||
266 | /* go back into the guest */ | ||
267 | |||
268 | /* Pass the exit number as 3rd argument to kvmppc_handle_exit */ | 149 | /* Pass the exit number as 3rd argument to kvmppc_handle_exit */ |
269 | mr r5, r12 | 150 | mr r5, r12 |
270 | 151 | ||
diff --git a/arch/powerpc/kvm/book3s_pr.c b/arch/powerpc/kvm/book3s_pr.c index 0c0d3f274437..bc4d50dec78b 100644 --- a/arch/powerpc/kvm/book3s_pr.c +++ b/arch/powerpc/kvm/book3s_pr.c | |||
@@ -20,6 +20,7 @@ | |||
20 | */ | 20 | */ |
21 | 21 | ||
22 | #include <linux/kvm_host.h> | 22 | #include <linux/kvm_host.h> |
23 | #include <linux/export.h> | ||
23 | #include <linux/err.h> | 24 | #include <linux/err.h> |
24 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
25 | 26 | ||
@@ -150,16 +151,22 @@ void kvmppc_set_pvr(struct kvm_vcpu *vcpu, u32 pvr) | |||
150 | #ifdef CONFIG_PPC_BOOK3S_64 | 151 | #ifdef CONFIG_PPC_BOOK3S_64 |
151 | if ((pvr >= 0x330000) && (pvr < 0x70330000)) { | 152 | if ((pvr >= 0x330000) && (pvr < 0x70330000)) { |
152 | kvmppc_mmu_book3s_64_init(vcpu); | 153 | kvmppc_mmu_book3s_64_init(vcpu); |
153 | to_book3s(vcpu)->hior = 0xfff00000; | 154 | if (!to_book3s(vcpu)->hior_sregs) |
155 | to_book3s(vcpu)->hior = 0xfff00000; | ||
154 | to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL; | 156 | to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL; |
157 | vcpu->arch.cpu_type = KVM_CPU_3S_64; | ||
155 | } else | 158 | } else |
156 | #endif | 159 | #endif |
157 | { | 160 | { |
158 | kvmppc_mmu_book3s_32_init(vcpu); | 161 | kvmppc_mmu_book3s_32_init(vcpu); |
159 | to_book3s(vcpu)->hior = 0; | 162 | if (!to_book3s(vcpu)->hior_sregs) |
163 | to_book3s(vcpu)->hior = 0; | ||
160 | to_book3s(vcpu)->msr_mask = 0xffffffffULL; | 164 | to_book3s(vcpu)->msr_mask = 0xffffffffULL; |
165 | vcpu->arch.cpu_type = KVM_CPU_3S_32; | ||
161 | } | 166 | } |
162 | 167 | ||
168 | kvmppc_sanity_check(vcpu); | ||
169 | |||
163 | /* If we are in hypervisor level on 970, we can tell the CPU to | 170 | /* If we are in hypervisor level on 970, we can tell the CPU to |
164 | * treat DCBZ as 32 bytes store */ | 171 | * treat DCBZ as 32 bytes store */ |
165 | vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32; | 172 | vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32; |
@@ -646,7 +653,27 @@ program_interrupt: | |||
646 | break; | 653 | break; |
647 | } | 654 | } |
648 | case BOOK3S_INTERRUPT_SYSCALL: | 655 | case BOOK3S_INTERRUPT_SYSCALL: |
649 | if (vcpu->arch.osi_enabled && | 656 | if (vcpu->arch.papr_enabled && |
657 | (kvmppc_get_last_inst(vcpu) == 0x44000022) && | ||
658 | !(vcpu->arch.shared->msr & MSR_PR)) { | ||
659 | /* SC 1 papr hypercalls */ | ||
660 | ulong cmd = kvmppc_get_gpr(vcpu, 3); | ||
661 | int i; | ||
662 | |||
663 | if (kvmppc_h_pr(vcpu, cmd) == EMULATE_DONE) { | ||
664 | r = RESUME_GUEST; | ||
665 | break; | ||
666 | } | ||
667 | |||
668 | run->papr_hcall.nr = cmd; | ||
669 | for (i = 0; i < 9; ++i) { | ||
670 | ulong gpr = kvmppc_get_gpr(vcpu, 4 + i); | ||
671 | run->papr_hcall.args[i] = gpr; | ||
672 | } | ||
673 | run->exit_reason = KVM_EXIT_PAPR_HCALL; | ||
674 | vcpu->arch.hcall_needed = 1; | ||
675 | r = RESUME_HOST; | ||
676 | } else if (vcpu->arch.osi_enabled && | ||
650 | (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) && | 677 | (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) && |
651 | (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) { | 678 | (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) { |
652 | /* MOL hypercalls */ | 679 | /* MOL hypercalls */ |
@@ -770,6 +797,9 @@ int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu, | |||
770 | } | 797 | } |
771 | } | 798 | } |
772 | 799 | ||
800 | if (sregs->u.s.flags & KVM_SREGS_S_HIOR) | ||
801 | sregs->u.s.hior = to_book3s(vcpu)->hior; | ||
802 | |||
773 | return 0; | 803 | return 0; |
774 | } | 804 | } |
775 | 805 | ||
@@ -806,6 +836,11 @@ int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu, | |||
806 | /* Flush the MMU after messing with the segments */ | 836 | /* Flush the MMU after messing with the segments */ |
807 | kvmppc_mmu_pte_flush(vcpu, 0, 0); | 837 | kvmppc_mmu_pte_flush(vcpu, 0, 0); |
808 | 838 | ||
839 | if (sregs->u.s.flags & KVM_SREGS_S_HIOR) { | ||
840 | to_book3s(vcpu)->hior_sregs = true; | ||
841 | to_book3s(vcpu)->hior = sregs->u.s.hior; | ||
842 | } | ||
843 | |||
809 | return 0; | 844 | return 0; |
810 | } | 845 | } |
811 | 846 | ||
@@ -841,8 +876,6 @@ struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id) | |||
841 | if (!p) | 876 | if (!p) |
842 | goto uninit_vcpu; | 877 | goto uninit_vcpu; |
843 | 878 | ||
844 | vcpu->arch.host_retip = kvm_return_point; | ||
845 | vcpu->arch.host_msr = mfmsr(); | ||
846 | #ifdef CONFIG_PPC_BOOK3S_64 | 879 | #ifdef CONFIG_PPC_BOOK3S_64 |
847 | /* default to book3s_64 (970fx) */ | 880 | /* default to book3s_64 (970fx) */ |
848 | vcpu->arch.pvr = 0x3C0301; | 881 | vcpu->arch.pvr = 0x3C0301; |
@@ -853,16 +886,6 @@ struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id) | |||
853 | kvmppc_set_pvr(vcpu, vcpu->arch.pvr); | 886 | kvmppc_set_pvr(vcpu, vcpu->arch.pvr); |
854 | vcpu->arch.slb_nr = 64; | 887 | vcpu->arch.slb_nr = 64; |
855 | 888 | ||
856 | /* remember where some real-mode handlers are */ | ||
857 | vcpu->arch.trampoline_lowmem = __pa(kvmppc_handler_lowmem_trampoline); | ||
858 | vcpu->arch.trampoline_enter = __pa(kvmppc_handler_trampoline_enter); | ||
859 | vcpu->arch.highmem_handler = (ulong)kvmppc_handler_highmem; | ||
860 | #ifdef CONFIG_PPC_BOOK3S_64 | ||
861 | vcpu->arch.rmcall = *(ulong*)kvmppc_rmcall; | ||
862 | #else | ||
863 | vcpu->arch.rmcall = (ulong)kvmppc_rmcall; | ||
864 | #endif | ||
865 | |||
866 | vcpu->arch.shadow_msr = MSR_USER64; | 889 | vcpu->arch.shadow_msr = MSR_USER64; |
867 | 890 | ||
868 | err = kvmppc_mmu_init(vcpu); | 891 | err = kvmppc_mmu_init(vcpu); |
@@ -908,6 +931,12 @@ int kvmppc_vcpu_run(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu) | |||
908 | #endif | 931 | #endif |
909 | ulong ext_msr; | 932 | ulong ext_msr; |
910 | 933 | ||
934 | /* Check if we can run the vcpu at all */ | ||
935 | if (!vcpu->arch.sane) { | ||
936 | kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR; | ||
937 | return -EINVAL; | ||
938 | } | ||
939 | |||
911 | /* No need to go into the guest when all we do is going out */ | 940 | /* No need to go into the guest when all we do is going out */ |
912 | if (signal_pending(current)) { | 941 | if (signal_pending(current)) { |
913 | kvm_run->exit_reason = KVM_EXIT_INTR; | 942 | kvm_run->exit_reason = KVM_EXIT_INTR; |
diff --git a/arch/powerpc/kvm/book3s_pr_papr.c b/arch/powerpc/kvm/book3s_pr_papr.c new file mode 100644 index 000000000000..b9589324797b --- /dev/null +++ b/arch/powerpc/kvm/book3s_pr_papr.c | |||
@@ -0,0 +1,158 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2011. Freescale Inc. All rights reserved. | ||
3 | * | ||
4 | * Authors: | ||
5 | * Alexander Graf <agraf@suse.de> | ||
6 | * Paul Mackerras <paulus@samba.org> | ||
7 | * | ||
8 | * Description: | ||
9 | * | ||
10 | * Hypercall handling for running PAPR guests in PR KVM on Book 3S | ||
11 | * processors. | ||
12 | * | ||
13 | * This program is free software; you can redistribute it and/or modify | ||
14 | * it under the terms of the GNU General Public License, version 2, as | ||
15 | * published by the Free Software Foundation. | ||
16 | */ | ||
17 | |||
18 | #include <asm/uaccess.h> | ||
19 | #include <asm/kvm_ppc.h> | ||
20 | #include <asm/kvm_book3s.h> | ||
21 | |||
22 | static unsigned long get_pteg_addr(struct kvm_vcpu *vcpu, long pte_index) | ||
23 | { | ||
24 | struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu); | ||
25 | unsigned long pteg_addr; | ||
26 | |||
27 | pte_index <<= 4; | ||
28 | pte_index &= ((1 << ((vcpu_book3s->sdr1 & 0x1f) + 11)) - 1) << 7 | 0x70; | ||
29 | pteg_addr = vcpu_book3s->sdr1 & 0xfffffffffffc0000ULL; | ||
30 | pteg_addr |= pte_index; | ||
31 | |||
32 | return pteg_addr; | ||
33 | } | ||
34 | |||
35 | static int kvmppc_h_pr_enter(struct kvm_vcpu *vcpu) | ||
36 | { | ||
37 | long flags = kvmppc_get_gpr(vcpu, 4); | ||
38 | long pte_index = kvmppc_get_gpr(vcpu, 5); | ||
39 | unsigned long pteg[2 * 8]; | ||
40 | unsigned long pteg_addr, i, *hpte; | ||
41 | |||
42 | pte_index &= ~7UL; | ||
43 | pteg_addr = get_pteg_addr(vcpu, pte_index); | ||
44 | |||
45 | copy_from_user(pteg, (void __user *)pteg_addr, sizeof(pteg)); | ||
46 | hpte = pteg; | ||
47 | |||
48 | if (likely((flags & H_EXACT) == 0)) { | ||
49 | pte_index &= ~7UL; | ||
50 | for (i = 0; ; ++i) { | ||
51 | if (i == 8) | ||
52 | return H_PTEG_FULL; | ||
53 | if ((*hpte & HPTE_V_VALID) == 0) | ||
54 | break; | ||
55 | hpte += 2; | ||
56 | } | ||
57 | } else { | ||
58 | i = kvmppc_get_gpr(vcpu, 5) & 7UL; | ||
59 | hpte += i * 2; | ||
60 | } | ||
61 | |||
62 | hpte[0] = kvmppc_get_gpr(vcpu, 6); | ||
63 | hpte[1] = kvmppc_get_gpr(vcpu, 7); | ||
64 | copy_to_user((void __user *)pteg_addr, pteg, sizeof(pteg)); | ||
65 | kvmppc_set_gpr(vcpu, 3, H_SUCCESS); | ||
66 | kvmppc_set_gpr(vcpu, 4, pte_index | i); | ||
67 | |||
68 | return EMULATE_DONE; | ||
69 | } | ||
70 | |||
71 | static int kvmppc_h_pr_remove(struct kvm_vcpu *vcpu) | ||
72 | { | ||
73 | unsigned long flags= kvmppc_get_gpr(vcpu, 4); | ||
74 | unsigned long pte_index = kvmppc_get_gpr(vcpu, 5); | ||
75 | unsigned long avpn = kvmppc_get_gpr(vcpu, 6); | ||
76 | unsigned long v = 0, pteg, rb; | ||
77 | unsigned long pte[2]; | ||
78 | |||
79 | pteg = get_pteg_addr(vcpu, pte_index); | ||
80 | copy_from_user(pte, (void __user *)pteg, sizeof(pte)); | ||
81 | |||
82 | if ((pte[0] & HPTE_V_VALID) == 0 || | ||
83 | ((flags & H_AVPN) && (pte[0] & ~0x7fUL) != avpn) || | ||
84 | ((flags & H_ANDCOND) && (pte[0] & avpn) != 0)) { | ||
85 | kvmppc_set_gpr(vcpu, 3, H_NOT_FOUND); | ||
86 | return EMULATE_DONE; | ||
87 | } | ||
88 | |||
89 | copy_to_user((void __user *)pteg, &v, sizeof(v)); | ||
90 | |||
91 | rb = compute_tlbie_rb(pte[0], pte[1], pte_index); | ||
92 | vcpu->arch.mmu.tlbie(vcpu, rb, rb & 1 ? true : false); | ||
93 | |||
94 | kvmppc_set_gpr(vcpu, 3, H_SUCCESS); | ||
95 | kvmppc_set_gpr(vcpu, 4, pte[0]); | ||
96 | kvmppc_set_gpr(vcpu, 5, pte[1]); | ||
97 | |||
98 | return EMULATE_DONE; | ||
99 | } | ||
100 | |||
101 | static int kvmppc_h_pr_protect(struct kvm_vcpu *vcpu) | ||
102 | { | ||
103 | unsigned long flags = kvmppc_get_gpr(vcpu, 4); | ||
104 | unsigned long pte_index = kvmppc_get_gpr(vcpu, 5); | ||
105 | unsigned long avpn = kvmppc_get_gpr(vcpu, 6); | ||
106 | unsigned long rb, pteg, r, v; | ||
107 | unsigned long pte[2]; | ||
108 | |||
109 | pteg = get_pteg_addr(vcpu, pte_index); | ||
110 | copy_from_user(pte, (void __user *)pteg, sizeof(pte)); | ||
111 | |||
112 | if ((pte[0] & HPTE_V_VALID) == 0 || | ||
113 | ((flags & H_AVPN) && (pte[0] & ~0x7fUL) != avpn)) { | ||
114 | kvmppc_set_gpr(vcpu, 3, H_NOT_FOUND); | ||
115 | return EMULATE_DONE; | ||
116 | } | ||
117 | |||
118 | v = pte[0]; | ||
119 | r = pte[1]; | ||
120 | r &= ~(HPTE_R_PP0 | HPTE_R_PP | HPTE_R_N | HPTE_R_KEY_HI | | ||
121 | HPTE_R_KEY_LO); | ||
122 | r |= (flags << 55) & HPTE_R_PP0; | ||
123 | r |= (flags << 48) & HPTE_R_KEY_HI; | ||
124 | r |= flags & (HPTE_R_PP | HPTE_R_N | HPTE_R_KEY_LO); | ||
125 | |||
126 | pte[1] = r; | ||
127 | |||
128 | rb = compute_tlbie_rb(v, r, pte_index); | ||
129 | vcpu->arch.mmu.tlbie(vcpu, rb, rb & 1 ? true : false); | ||
130 | copy_to_user((void __user *)pteg, pte, sizeof(pte)); | ||
131 | |||
132 | kvmppc_set_gpr(vcpu, 3, H_SUCCESS); | ||
133 | |||
134 | return EMULATE_DONE; | ||
135 | } | ||
136 | |||
137 | int kvmppc_h_pr(struct kvm_vcpu *vcpu, unsigned long cmd) | ||
138 | { | ||
139 | switch (cmd) { | ||
140 | case H_ENTER: | ||
141 | return kvmppc_h_pr_enter(vcpu); | ||
142 | case H_REMOVE: | ||
143 | return kvmppc_h_pr_remove(vcpu); | ||
144 | case H_PROTECT: | ||
145 | return kvmppc_h_pr_protect(vcpu); | ||
146 | case H_BULK_REMOVE: | ||
147 | /* We just flush all PTEs, so user space can | ||
148 | handle the HPT modifications */ | ||
149 | kvmppc_mmu_pte_flush(vcpu, 0, 0); | ||
150 | break; | ||
151 | case H_CEDE: | ||
152 | kvm_vcpu_block(vcpu); | ||
153 | vcpu->stat.halt_wakeup++; | ||
154 | return EMULATE_DONE; | ||
155 | } | ||
156 | |||
157 | return EMULATE_FAIL; | ||
158 | } | ||
diff --git a/arch/powerpc/kvm/book3s_rmhandlers.S b/arch/powerpc/kvm/book3s_rmhandlers.S index c1f877c4a884..34187585c507 100644 --- a/arch/powerpc/kvm/book3s_rmhandlers.S +++ b/arch/powerpc/kvm/book3s_rmhandlers.S | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <asm/ppc_asm.h> | 20 | #include <asm/ppc_asm.h> |
21 | #include <asm/kvm_asm.h> | 21 | #include <asm/kvm_asm.h> |
22 | #include <asm/reg.h> | 22 | #include <asm/reg.h> |
23 | #include <asm/mmu.h> | ||
23 | #include <asm/page.h> | 24 | #include <asm/page.h> |
24 | #include <asm/asm-offsets.h> | 25 | #include <asm/asm-offsets.h> |
25 | 26 | ||
@@ -35,10 +36,10 @@ | |||
35 | 36 | ||
36 | #if defined(CONFIG_PPC_BOOK3S_64) | 37 | #if defined(CONFIG_PPC_BOOK3S_64) |
37 | 38 | ||
38 | #define LOAD_SHADOW_VCPU(reg) GET_PACA(reg) | ||
39 | #define MSR_NOIRQ MSR_KERNEL & ~(MSR_IR | MSR_DR) | ||
40 | #define FUNC(name) GLUE(.,name) | 39 | #define FUNC(name) GLUE(.,name) |
40 | #define MTMSR_EERI(reg) mtmsrd (reg),1 | ||
41 | 41 | ||
42 | .globl kvmppc_skip_interrupt | ||
42 | kvmppc_skip_interrupt: | 43 | kvmppc_skip_interrupt: |
43 | /* | 44 | /* |
44 | * Here all GPRs are unchanged from when the interrupt happened | 45 | * Here all GPRs are unchanged from when the interrupt happened |
@@ -51,6 +52,7 @@ kvmppc_skip_interrupt: | |||
51 | rfid | 52 | rfid |
52 | b . | 53 | b . |
53 | 54 | ||
55 | .globl kvmppc_skip_Hinterrupt | ||
54 | kvmppc_skip_Hinterrupt: | 56 | kvmppc_skip_Hinterrupt: |
55 | /* | 57 | /* |
56 | * Here all GPRs are unchanged from when the interrupt happened | 58 | * Here all GPRs are unchanged from when the interrupt happened |
@@ -65,8 +67,8 @@ kvmppc_skip_Hinterrupt: | |||
65 | 67 | ||
66 | #elif defined(CONFIG_PPC_BOOK3S_32) | 68 | #elif defined(CONFIG_PPC_BOOK3S_32) |
67 | 69 | ||
68 | #define MSR_NOIRQ MSR_KERNEL | ||
69 | #define FUNC(name) name | 70 | #define FUNC(name) name |
71 | #define MTMSR_EERI(reg) mtmsr (reg) | ||
70 | 72 | ||
71 | .macro INTERRUPT_TRAMPOLINE intno | 73 | .macro INTERRUPT_TRAMPOLINE intno |
72 | 74 | ||
@@ -167,40 +169,24 @@ kvmppc_handler_skip_ins: | |||
167 | #endif | 169 | #endif |
168 | 170 | ||
169 | /* | 171 | /* |
170 | * This trampoline brings us back to a real mode handler | 172 | * Call kvmppc_handler_trampoline_enter in real mode |
171 | * | ||
172 | * Input Registers: | ||
173 | * | ||
174 | * R5 = SRR0 | ||
175 | * R6 = SRR1 | ||
176 | * LR = real-mode IP | ||
177 | * | 173 | * |
174 | * On entry, r4 contains the guest shadow MSR | ||
178 | */ | 175 | */ |
179 | .global kvmppc_handler_lowmem_trampoline | 176 | _GLOBAL(kvmppc_entry_trampoline) |
180 | kvmppc_handler_lowmem_trampoline: | 177 | mfmsr r5 |
181 | 178 | LOAD_REG_ADDR(r7, kvmppc_handler_trampoline_enter) | |
182 | mtsrr0 r5 | 179 | toreal(r7) |
180 | |||
181 | li r9, MSR_RI | ||
182 | ori r9, r9, MSR_EE | ||
183 | andc r9, r5, r9 /* Clear EE and RI in MSR value */ | ||
184 | li r6, MSR_IR | MSR_DR | ||
185 | ori r6, r6, MSR_EE | ||
186 | andc r6, r5, r6 /* Clear EE, DR and IR in MSR value */ | ||
187 | MTMSR_EERI(r9) /* Clear EE and RI in MSR */ | ||
188 | mtsrr0 r7 /* before we set srr0/1 */ | ||
183 | mtsrr1 r6 | 189 | mtsrr1 r6 |
184 | blr | ||
185 | kvmppc_handler_lowmem_trampoline_end: | ||
186 | |||
187 | /* | ||
188 | * Call a function in real mode | ||
189 | * | ||
190 | * Input Registers: | ||
191 | * | ||
192 | * R3 = function | ||
193 | * R4 = MSR | ||
194 | * R5 = scratch register | ||
195 | * | ||
196 | */ | ||
197 | _GLOBAL(kvmppc_rmcall) | ||
198 | LOAD_REG_IMMEDIATE(r5, MSR_NOIRQ) | ||
199 | mtmsr r5 /* Disable relocation and interrupts, so mtsrr | ||
200 | doesn't get interrupted */ | ||
201 | sync | ||
202 | mtsrr0 r3 | ||
203 | mtsrr1 r4 | ||
204 | RFI | 190 | RFI |
205 | 191 | ||
206 | #if defined(CONFIG_PPC_BOOK3S_32) | 192 | #if defined(CONFIG_PPC_BOOK3S_32) |
diff --git a/arch/powerpc/kvm/book3s_segment.S b/arch/powerpc/kvm/book3s_segment.S index aed32e517212..0676ae249b9f 100644 --- a/arch/powerpc/kvm/book3s_segment.S +++ b/arch/powerpc/kvm/book3s_segment.S | |||
@@ -23,6 +23,7 @@ | |||
23 | 23 | ||
24 | #define GET_SHADOW_VCPU(reg) \ | 24 | #define GET_SHADOW_VCPU(reg) \ |
25 | mr reg, r13 | 25 | mr reg, r13 |
26 | #define MTMSR_EERI(reg) mtmsrd (reg),1 | ||
26 | 27 | ||
27 | #elif defined(CONFIG_PPC_BOOK3S_32) | 28 | #elif defined(CONFIG_PPC_BOOK3S_32) |
28 | 29 | ||
@@ -30,6 +31,7 @@ | |||
30 | tophys(reg, r2); \ | 31 | tophys(reg, r2); \ |
31 | lwz reg, (THREAD + THREAD_KVM_SVCPU)(reg); \ | 32 | lwz reg, (THREAD + THREAD_KVM_SVCPU)(reg); \ |
32 | tophys(reg, reg) | 33 | tophys(reg, reg) |
34 | #define MTMSR_EERI(reg) mtmsr (reg) | ||
33 | 35 | ||
34 | #endif | 36 | #endif |
35 | 37 | ||
@@ -57,10 +59,12 @@ kvmppc_handler_trampoline_enter: | |||
57 | /* Required state: | 59 | /* Required state: |
58 | * | 60 | * |
59 | * MSR = ~IR|DR | 61 | * MSR = ~IR|DR |
60 | * R13 = PACA | ||
61 | * R1 = host R1 | 62 | * R1 = host R1 |
62 | * R2 = host R2 | 63 | * R2 = host R2 |
63 | * R10 = guest MSR | 64 | * R4 = guest shadow MSR |
65 | * R5 = normal host MSR | ||
66 | * R6 = current host MSR (EE, IR, DR off) | ||
67 | * LR = highmem guest exit code | ||
64 | * all other volatile GPRS = free | 68 | * all other volatile GPRS = free |
65 | * SVCPU[CR] = guest CR | 69 | * SVCPU[CR] = guest CR |
66 | * SVCPU[XER] = guest XER | 70 | * SVCPU[XER] = guest XER |
@@ -71,15 +75,15 @@ kvmppc_handler_trampoline_enter: | |||
71 | /* r3 = shadow vcpu */ | 75 | /* r3 = shadow vcpu */ |
72 | GET_SHADOW_VCPU(r3) | 76 | GET_SHADOW_VCPU(r3) |
73 | 77 | ||
78 | /* Save guest exit handler address and MSR */ | ||
79 | mflr r0 | ||
80 | PPC_STL r0, HSTATE_VMHANDLER(r3) | ||
81 | PPC_STL r5, HSTATE_HOST_MSR(r3) | ||
82 | |||
74 | /* Save R1/R2 in the PACA (64-bit) or shadow_vcpu (32-bit) */ | 83 | /* Save R1/R2 in the PACA (64-bit) or shadow_vcpu (32-bit) */ |
75 | PPC_STL r1, HSTATE_HOST_R1(r3) | 84 | PPC_STL r1, HSTATE_HOST_R1(r3) |
76 | PPC_STL r2, HSTATE_HOST_R2(r3) | 85 | PPC_STL r2, HSTATE_HOST_R2(r3) |
77 | 86 | ||
78 | /* Move SRR0 and SRR1 into the respective regs */ | ||
79 | PPC_LL r9, SVCPU_PC(r3) | ||
80 | mtsrr0 r9 | ||
81 | mtsrr1 r10 | ||
82 | |||
83 | /* Activate guest mode, so faults get handled by KVM */ | 87 | /* Activate guest mode, so faults get handled by KVM */ |
84 | li r11, KVM_GUEST_MODE_GUEST | 88 | li r11, KVM_GUEST_MODE_GUEST |
85 | stb r11, HSTATE_IN_GUEST(r3) | 89 | stb r11, HSTATE_IN_GUEST(r3) |
@@ -87,17 +91,46 @@ kvmppc_handler_trampoline_enter: | |||
87 | /* Switch to guest segment. This is subarch specific. */ | 91 | /* Switch to guest segment. This is subarch specific. */ |
88 | LOAD_GUEST_SEGMENTS | 92 | LOAD_GUEST_SEGMENTS |
89 | 93 | ||
94 | #ifdef CONFIG_PPC_BOOK3S_64 | ||
95 | /* Some guests may need to have dcbz set to 32 byte length. | ||
96 | * | ||
97 | * Usually we ensure that by patching the guest's instructions | ||
98 | * to trap on dcbz and emulate it in the hypervisor. | ||
99 | * | ||
100 | * If we can, we should tell the CPU to use 32 byte dcbz though, | ||
101 | * because that's a lot faster. | ||
102 | */ | ||
103 | lbz r0, HSTATE_RESTORE_HID5(r3) | ||
104 | cmpwi r0, 0 | ||
105 | beq no_dcbz32_on | ||
106 | |||
107 | mfspr r0,SPRN_HID5 | ||
108 | ori r0, r0, 0x80 /* XXX HID5_dcbz32 = 0x80 */ | ||
109 | mtspr SPRN_HID5,r0 | ||
110 | no_dcbz32_on: | ||
111 | |||
112 | #endif /* CONFIG_PPC_BOOK3S_64 */ | ||
113 | |||
90 | /* Enter guest */ | 114 | /* Enter guest */ |
91 | 115 | ||
92 | PPC_LL r4, SVCPU_CTR(r3) | 116 | PPC_LL r8, SVCPU_CTR(r3) |
93 | PPC_LL r5, SVCPU_LR(r3) | 117 | PPC_LL r9, SVCPU_LR(r3) |
94 | lwz r6, SVCPU_CR(r3) | 118 | lwz r10, SVCPU_CR(r3) |
95 | lwz r7, SVCPU_XER(r3) | 119 | lwz r11, SVCPU_XER(r3) |
120 | |||
121 | mtctr r8 | ||
122 | mtlr r9 | ||
123 | mtcr r10 | ||
124 | mtxer r11 | ||
96 | 125 | ||
97 | mtctr r4 | 126 | /* Move SRR0 and SRR1 into the respective regs */ |
98 | mtlr r5 | 127 | PPC_LL r9, SVCPU_PC(r3) |
99 | mtcr r6 | 128 | /* First clear RI in our current MSR value */ |
100 | mtxer r7 | 129 | li r0, MSR_RI |
130 | andc r6, r6, r0 | ||
131 | MTMSR_EERI(r6) | ||
132 | mtsrr0 r9 | ||
133 | mtsrr1 r4 | ||
101 | 134 | ||
102 | PPC_LL r0, SVCPU_R0(r3) | 135 | PPC_LL r0, SVCPU_R0(r3) |
103 | PPC_LL r1, SVCPU_R1(r3) | 136 | PPC_LL r1, SVCPU_R1(r3) |
@@ -213,11 +246,16 @@ END_FTR_SECTION_IFSET(CPU_FTR_HVMODE) | |||
213 | beq ld_last_inst | 246 | beq ld_last_inst |
214 | cmpwi r12, BOOK3S_INTERRUPT_PROGRAM | 247 | cmpwi r12, BOOK3S_INTERRUPT_PROGRAM |
215 | beq ld_last_inst | 248 | beq ld_last_inst |
249 | cmpwi r12, BOOK3S_INTERRUPT_SYSCALL | ||
250 | beq ld_last_prev_inst | ||
216 | cmpwi r12, BOOK3S_INTERRUPT_ALIGNMENT | 251 | cmpwi r12, BOOK3S_INTERRUPT_ALIGNMENT |
217 | beq- ld_last_inst | 252 | beq- ld_last_inst |
218 | 253 | ||
219 | b no_ld_last_inst | 254 | b no_ld_last_inst |
220 | 255 | ||
256 | ld_last_prev_inst: | ||
257 | addi r3, r3, -4 | ||
258 | |||
221 | ld_last_inst: | 259 | ld_last_inst: |
222 | /* Save off the guest instruction we're at */ | 260 | /* Save off the guest instruction we're at */ |
223 | 261 | ||
@@ -254,6 +292,43 @@ no_ld_last_inst: | |||
254 | /* Switch back to host MMU */ | 292 | /* Switch back to host MMU */ |
255 | LOAD_HOST_SEGMENTS | 293 | LOAD_HOST_SEGMENTS |
256 | 294 | ||
295 | #ifdef CONFIG_PPC_BOOK3S_64 | ||
296 | |||
297 | lbz r5, HSTATE_RESTORE_HID5(r13) | ||
298 | cmpwi r5, 0 | ||
299 | beq no_dcbz32_off | ||
300 | |||
301 | li r4, 0 | ||
302 | mfspr r5,SPRN_HID5 | ||
303 | rldimi r5,r4,6,56 | ||
304 | mtspr SPRN_HID5,r5 | ||
305 | |||
306 | no_dcbz32_off: | ||
307 | |||
308 | #endif /* CONFIG_PPC_BOOK3S_64 */ | ||
309 | |||
310 | /* | ||
311 | * For some interrupts, we need to call the real Linux | ||
312 | * handler, so it can do work for us. This has to happen | ||
313 | * as if the interrupt arrived from the kernel though, | ||
314 | * so let's fake it here where most state is restored. | ||
315 | * | ||
316 | * Having set up SRR0/1 with the address where we want | ||
317 | * to continue with relocation on (potentially in module | ||
318 | * space), we either just go straight there with rfi[d], | ||
319 | * or we jump to an interrupt handler with bctr if there | ||
320 | * is an interrupt to be handled first. In the latter | ||
321 | * case, the rfi[d] at the end of the interrupt handler | ||
322 | * will get us back to where we want to continue. | ||
323 | */ | ||
324 | |||
325 | cmpwi r12, BOOK3S_INTERRUPT_EXTERNAL | ||
326 | beq 1f | ||
327 | cmpwi r12, BOOK3S_INTERRUPT_DECREMENTER | ||
328 | beq 1f | ||
329 | cmpwi r12, BOOK3S_INTERRUPT_PERFMON | ||
330 | 1: mtctr r12 | ||
331 | |||
257 | /* Register usage at this point: | 332 | /* Register usage at this point: |
258 | * | 333 | * |
259 | * R1 = host R1 | 334 | * R1 = host R1 |
@@ -264,13 +339,15 @@ no_ld_last_inst: | |||
264 | * | 339 | * |
265 | */ | 340 | */ |
266 | 341 | ||
267 | /* RFI into the highmem handler */ | 342 | PPC_LL r6, HSTATE_HOST_MSR(r13) |
268 | mfmsr r7 | ||
269 | ori r7, r7, MSR_IR|MSR_DR|MSR_RI|MSR_ME /* Enable paging */ | ||
270 | mtsrr1 r7 | ||
271 | /* Load highmem handler address */ | ||
272 | PPC_LL r8, HSTATE_VMHANDLER(r13) | 343 | PPC_LL r8, HSTATE_VMHANDLER(r13) |
344 | |||
345 | /* Restore host msr -> SRR1 */ | ||
346 | mtsrr1 r6 | ||
347 | /* Load highmem handler address */ | ||
273 | mtsrr0 r8 | 348 | mtsrr0 r8 |
274 | 349 | ||
350 | /* RFI into the highmem handler, or jump to interrupt handler */ | ||
351 | beqctr | ||
275 | RFI | 352 | RFI |
276 | kvmppc_handler_trampoline_exit_end: | 353 | kvmppc_handler_trampoline_exit_end: |
diff --git a/arch/powerpc/kvm/booke.c b/arch/powerpc/kvm/booke.c index ee45fa01220e..bb6c988f010a 100644 --- a/arch/powerpc/kvm/booke.c +++ b/arch/powerpc/kvm/booke.c | |||
@@ -316,6 +316,11 @@ int kvmppc_vcpu_run(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu) | |||
316 | { | 316 | { |
317 | int ret; | 317 | int ret; |
318 | 318 | ||
319 | if (!vcpu->arch.sane) { | ||
320 | kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR; | ||
321 | return -EINVAL; | ||
322 | } | ||
323 | |||
319 | local_irq_disable(); | 324 | local_irq_disable(); |
320 | kvm_guest_enter(); | 325 | kvm_guest_enter(); |
321 | ret = __kvmppc_vcpu_run(kvm_run, vcpu); | 326 | ret = __kvmppc_vcpu_run(kvm_run, vcpu); |
@@ -618,6 +623,7 @@ int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu, | |||
618 | int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu) | 623 | int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu) |
619 | { | 624 | { |
620 | int i; | 625 | int i; |
626 | int r; | ||
621 | 627 | ||
622 | vcpu->arch.pc = 0; | 628 | vcpu->arch.pc = 0; |
623 | vcpu->arch.shared->msr = 0; | 629 | vcpu->arch.shared->msr = 0; |
@@ -634,7 +640,9 @@ int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu) | |||
634 | 640 | ||
635 | kvmppc_init_timing_stats(vcpu); | 641 | kvmppc_init_timing_stats(vcpu); |
636 | 642 | ||
637 | return kvmppc_core_vcpu_setup(vcpu); | 643 | r = kvmppc_core_vcpu_setup(vcpu); |
644 | kvmppc_sanity_check(vcpu); | ||
645 | return r; | ||
638 | } | 646 | } |
639 | 647 | ||
640 | int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) | 648 | int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) |
diff --git a/arch/powerpc/kvm/e500.c b/arch/powerpc/kvm/e500.c index 797a7447c268..26d20903f2bc 100644 --- a/arch/powerpc/kvm/e500.c +++ b/arch/powerpc/kvm/e500.c | |||
@@ -73,6 +73,8 @@ int kvmppc_core_vcpu_setup(struct kvm_vcpu *vcpu) | |||
73 | /* Since booke kvm only support one core, update all vcpus' PIR to 0 */ | 73 | /* Since booke kvm only support one core, update all vcpus' PIR to 0 */ |
74 | vcpu->vcpu_id = 0; | 74 | vcpu->vcpu_id = 0; |
75 | 75 | ||
76 | vcpu->arch.cpu_type = KVM_CPU_E500V2; | ||
77 | |||
76 | return 0; | 78 | return 0; |
77 | } | 79 | } |
78 | 80 | ||
diff --git a/arch/powerpc/kvm/powerpc.c b/arch/powerpc/kvm/powerpc.c index a107c9be0fb1..efbf9ad87203 100644 --- a/arch/powerpc/kvm/powerpc.c +++ b/arch/powerpc/kvm/powerpc.c | |||
@@ -21,7 +21,6 @@ | |||
21 | #include <linux/errno.h> | 21 | #include <linux/errno.h> |
22 | #include <linux/err.h> | 22 | #include <linux/err.h> |
23 | #include <linux/kvm_host.h> | 23 | #include <linux/kvm_host.h> |
24 | #include <linux/module.h> | ||
25 | #include <linux/vmalloc.h> | 24 | #include <linux/vmalloc.h> |
26 | #include <linux/hrtimer.h> | 25 | #include <linux/hrtimer.h> |
27 | #include <linux/fs.h> | 26 | #include <linux/fs.h> |
@@ -39,12 +38,8 @@ | |||
39 | 38 | ||
40 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *v) | 39 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *v) |
41 | { | 40 | { |
42 | #ifndef CONFIG_KVM_BOOK3S_64_HV | ||
43 | return !(v->arch.shared->msr & MSR_WE) || | 41 | return !(v->arch.shared->msr & MSR_WE) || |
44 | !!(v->arch.pending_exceptions); | 42 | !!(v->arch.pending_exceptions); |
45 | #else | ||
46 | return !(v->arch.ceded) || !!(v->arch.pending_exceptions); | ||
47 | #endif | ||
48 | } | 43 | } |
49 | 44 | ||
50 | int kvmppc_kvm_pv(struct kvm_vcpu *vcpu) | 45 | int kvmppc_kvm_pv(struct kvm_vcpu *vcpu) |
@@ -95,6 +90,31 @@ int kvmppc_kvm_pv(struct kvm_vcpu *vcpu) | |||
95 | return r; | 90 | return r; |
96 | } | 91 | } |
97 | 92 | ||
93 | int kvmppc_sanity_check(struct kvm_vcpu *vcpu) | ||
94 | { | ||
95 | int r = false; | ||
96 | |||
97 | /* We have to know what CPU to virtualize */ | ||
98 | if (!vcpu->arch.pvr) | ||
99 | goto out; | ||
100 | |||
101 | /* PAPR only works with book3s_64 */ | ||
102 | if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled) | ||
103 | goto out; | ||
104 | |||
105 | #ifdef CONFIG_KVM_BOOK3S_64_HV | ||
106 | /* HV KVM can only do PAPR mode for now */ | ||
107 | if (!vcpu->arch.papr_enabled) | ||
108 | goto out; | ||
109 | #endif | ||
110 | |||
111 | r = true; | ||
112 | |||
113 | out: | ||
114 | vcpu->arch.sane = r; | ||
115 | return r ? 0 : -EINVAL; | ||
116 | } | ||
117 | |||
98 | int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu) | 118 | int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu) |
99 | { | 119 | { |
100 | enum emulation_result er; | 120 | enum emulation_result er; |
@@ -188,6 +208,8 @@ int kvm_dev_ioctl_check_extension(long ext) | |||
188 | case KVM_CAP_PPC_BOOKE_SREGS: | 208 | case KVM_CAP_PPC_BOOKE_SREGS: |
189 | #else | 209 | #else |
190 | case KVM_CAP_PPC_SEGSTATE: | 210 | case KVM_CAP_PPC_SEGSTATE: |
211 | case KVM_CAP_PPC_HIOR: | ||
212 | case KVM_CAP_PPC_PAPR: | ||
191 | #endif | 213 | #endif |
192 | case KVM_CAP_PPC_UNSET_IRQ: | 214 | case KVM_CAP_PPC_UNSET_IRQ: |
193 | case KVM_CAP_PPC_IRQ_LEVEL: | 215 | case KVM_CAP_PPC_IRQ_LEVEL: |
@@ -258,6 +280,7 @@ struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id) | |||
258 | { | 280 | { |
259 | struct kvm_vcpu *vcpu; | 281 | struct kvm_vcpu *vcpu; |
260 | vcpu = kvmppc_core_vcpu_create(kvm, id); | 282 | vcpu = kvmppc_core_vcpu_create(kvm, id); |
283 | vcpu->arch.wqp = &vcpu->wq; | ||
261 | if (!IS_ERR(vcpu)) | 284 | if (!IS_ERR(vcpu)) |
262 | kvmppc_create_vcpu_debugfs(vcpu, id); | 285 | kvmppc_create_vcpu_debugfs(vcpu, id); |
263 | return vcpu; | 286 | return vcpu; |
@@ -289,8 +312,8 @@ static void kvmppc_decrementer_func(unsigned long data) | |||
289 | 312 | ||
290 | kvmppc_core_queue_dec(vcpu); | 313 | kvmppc_core_queue_dec(vcpu); |
291 | 314 | ||
292 | if (waitqueue_active(&vcpu->wq)) { | 315 | if (waitqueue_active(vcpu->arch.wqp)) { |
293 | wake_up_interruptible(&vcpu->wq); | 316 | wake_up_interruptible(vcpu->arch.wqp); |
294 | vcpu->stat.halt_wakeup++; | 317 | vcpu->stat.halt_wakeup++; |
295 | } | 318 | } |
296 | } | 319 | } |
@@ -543,13 +566,15 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run) | |||
543 | 566 | ||
544 | int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq) | 567 | int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq) |
545 | { | 568 | { |
546 | if (irq->irq == KVM_INTERRUPT_UNSET) | 569 | if (irq->irq == KVM_INTERRUPT_UNSET) { |
547 | kvmppc_core_dequeue_external(vcpu, irq); | 570 | kvmppc_core_dequeue_external(vcpu, irq); |
548 | else | 571 | return 0; |
549 | kvmppc_core_queue_external(vcpu, irq); | 572 | } |
573 | |||
574 | kvmppc_core_queue_external(vcpu, irq); | ||
550 | 575 | ||
551 | if (waitqueue_active(&vcpu->wq)) { | 576 | if (waitqueue_active(vcpu->arch.wqp)) { |
552 | wake_up_interruptible(&vcpu->wq); | 577 | wake_up_interruptible(vcpu->arch.wqp); |
553 | vcpu->stat.halt_wakeup++; | 578 | vcpu->stat.halt_wakeup++; |
554 | } else if (vcpu->cpu != -1) { | 579 | } else if (vcpu->cpu != -1) { |
555 | smp_send_reschedule(vcpu->cpu); | 580 | smp_send_reschedule(vcpu->cpu); |
@@ -571,11 +596,18 @@ static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu, | |||
571 | r = 0; | 596 | r = 0; |
572 | vcpu->arch.osi_enabled = true; | 597 | vcpu->arch.osi_enabled = true; |
573 | break; | 598 | break; |
599 | case KVM_CAP_PPC_PAPR: | ||
600 | r = 0; | ||
601 | vcpu->arch.papr_enabled = true; | ||
602 | break; | ||
574 | default: | 603 | default: |
575 | r = -EINVAL; | 604 | r = -EINVAL; |
576 | break; | 605 | break; |
577 | } | 606 | } |
578 | 607 | ||
608 | if (!r) | ||
609 | r = kvmppc_sanity_check(vcpu); | ||
610 | |||
579 | return r; | 611 | return r; |
580 | } | 612 | } |
581 | 613 | ||
diff --git a/arch/powerpc/lib/checksum_wrappers_64.c b/arch/powerpc/lib/checksum_wrappers_64.c index 769b817fbb32..08e3a3356c40 100644 --- a/arch/powerpc/lib/checksum_wrappers_64.c +++ b/arch/powerpc/lib/checksum_wrappers_64.c | |||
@@ -17,7 +17,7 @@ | |||
17 | * | 17 | * |
18 | * Author: Anton Blanchard <anton@au.ibm.com> | 18 | * Author: Anton Blanchard <anton@au.ibm.com> |
19 | */ | 19 | */ |
20 | #include <linux/module.h> | 20 | #include <linux/export.h> |
21 | #include <linux/compiler.h> | 21 | #include <linux/compiler.h> |
22 | #include <linux/types.h> | 22 | #include <linux/types.h> |
23 | #include <asm/checksum.h> | 23 | #include <asm/checksum.h> |
diff --git a/arch/powerpc/lib/devres.c b/arch/powerpc/lib/devres.c index e91615abae66..8df55fc3aad6 100644 --- a/arch/powerpc/lib/devres.c +++ b/arch/powerpc/lib/devres.c | |||
@@ -10,7 +10,7 @@ | |||
10 | #include <linux/device.h> /* devres_*(), devm_ioremap_release() */ | 10 | #include <linux/device.h> /* devres_*(), devm_ioremap_release() */ |
11 | #include <linux/gfp.h> | 11 | #include <linux/gfp.h> |
12 | #include <linux/io.h> /* ioremap_prot() */ | 12 | #include <linux/io.h> /* ioremap_prot() */ |
13 | #include <linux/module.h> /* EXPORT_SYMBOL() */ | 13 | #include <linux/export.h> /* EXPORT_SYMBOL() */ |
14 | 14 | ||
15 | /** | 15 | /** |
16 | * devm_ioremap_prot - Managed ioremap_prot() | 16 | * devm_ioremap_prot - Managed ioremap_prot() |
diff --git a/arch/powerpc/lib/locks.c b/arch/powerpc/lib/locks.c index 9b8182e82166..a6ebba56fdd4 100644 --- a/arch/powerpc/lib/locks.c +++ b/arch/powerpc/lib/locks.c | |||
@@ -14,7 +14,7 @@ | |||
14 | 14 | ||
15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
16 | #include <linux/spinlock.h> | 16 | #include <linux/spinlock.h> |
17 | #include <linux/module.h> | 17 | #include <linux/export.h> |
18 | #include <linux/stringify.h> | 18 | #include <linux/stringify.h> |
19 | #include <linux/smp.h> | 19 | #include <linux/smp.h> |
20 | 20 | ||
diff --git a/arch/powerpc/lib/rheap.c b/arch/powerpc/lib/rheap.c index 45907c1dae66..a1060a868e69 100644 --- a/arch/powerpc/lib/rheap.c +++ b/arch/powerpc/lib/rheap.c | |||
@@ -15,7 +15,7 @@ | |||
15 | #include <linux/types.h> | 15 | #include <linux/types.h> |
16 | #include <linux/errno.h> | 16 | #include <linux/errno.h> |
17 | #include <linux/kernel.h> | 17 | #include <linux/kernel.h> |
18 | #include <linux/module.h> | 18 | #include <linux/export.h> |
19 | #include <linux/mm.h> | 19 | #include <linux/mm.h> |
20 | #include <linux/err.h> | 20 | #include <linux/err.h> |
21 | #include <linux/slab.h> | 21 | #include <linux/slab.h> |
diff --git a/arch/powerpc/math-emu/math_efp.c b/arch/powerpc/math-emu/math_efp.c index 62279200d965..a73f0884d358 100644 --- a/arch/powerpc/math-emu/math_efp.c +++ b/arch/powerpc/math-emu/math_efp.c | |||
@@ -171,10 +171,6 @@ static unsigned long insn_type(unsigned long speinsn) | |||
171 | case EFDNABS: ret = XA; break; | 171 | case EFDNABS: ret = XA; break; |
172 | case EFDNEG: ret = XA; break; | 172 | case EFDNEG: ret = XA; break; |
173 | case EFDSUB: ret = AB; break; | 173 | case EFDSUB: ret = AB; break; |
174 | |||
175 | default: | ||
176 | printk(KERN_ERR "\nOoops! SPE instruction no type found."); | ||
177 | printk(KERN_ERR "\ninst code: %08lx\n", speinsn); | ||
178 | } | 174 | } |
179 | 175 | ||
180 | return ret; | 176 | return ret; |
@@ -195,7 +191,7 @@ int do_spe_mathemu(struct pt_regs *regs) | |||
195 | 191 | ||
196 | type = insn_type(speinsn); | 192 | type = insn_type(speinsn); |
197 | if (type == NOTYPE) | 193 | if (type == NOTYPE) |
198 | return -ENOSYS; | 194 | goto illegal; |
199 | 195 | ||
200 | func = speinsn & 0x7ff; | 196 | func = speinsn & 0x7ff; |
201 | fc = (speinsn >> 21) & 0x1f; | 197 | fc = (speinsn >> 21) & 0x1f; |
@@ -212,12 +208,10 @@ int do_spe_mathemu(struct pt_regs *regs) | |||
212 | 208 | ||
213 | __FPU_FPSCR = mfspr(SPRN_SPEFSCR); | 209 | __FPU_FPSCR = mfspr(SPRN_SPEFSCR); |
214 | 210 | ||
215 | #ifdef DEBUG | 211 | pr_debug("speinsn:%08lx spefscr:%08lx\n", speinsn, __FPU_FPSCR); |
216 | printk("speinsn:%08lx spefscr:%08lx\n", speinsn, __FPU_FPSCR); | 212 | pr_debug("vc: %08x %08x\n", vc.wp[0], vc.wp[1]); |
217 | printk("vc: %08x %08x\n", vc.wp[0], vc.wp[1]); | 213 | pr_debug("va: %08x %08x\n", va.wp[0], va.wp[1]); |
218 | printk("va: %08x %08x\n", va.wp[0], va.wp[1]); | 214 | pr_debug("vb: %08x %08x\n", vb.wp[0], vb.wp[1]); |
219 | printk("vb: %08x %08x\n", vb.wp[0], vb.wp[1]); | ||
220 | #endif | ||
221 | 215 | ||
222 | switch (src) { | 216 | switch (src) { |
223 | case SPFP: { | 217 | case SPFP: { |
@@ -235,10 +229,8 @@ int do_spe_mathemu(struct pt_regs *regs) | |||
235 | break; | 229 | break; |
236 | } | 230 | } |
237 | 231 | ||
238 | #ifdef DEBUG | 232 | pr_debug("SA: %ld %08lx %ld (%ld)\n", SA_s, SA_f, SA_e, SA_c); |
239 | printk("SA: %ld %08lx %ld (%ld)\n", SA_s, SA_f, SA_e, SA_c); | 233 | pr_debug("SB: %ld %08lx %ld (%ld)\n", SB_s, SB_f, SB_e, SB_c); |
240 | printk("SB: %ld %08lx %ld (%ld)\n", SB_s, SB_f, SB_e, SB_c); | ||
241 | #endif | ||
242 | 234 | ||
243 | switch (func) { | 235 | switch (func) { |
244 | case EFSABS: | 236 | case EFSABS: |
@@ -305,10 +297,10 @@ int do_spe_mathemu(struct pt_regs *regs) | |||
305 | FP_DECL_D(DB); | 297 | FP_DECL_D(DB); |
306 | FP_CLEAR_EXCEPTIONS; | 298 | FP_CLEAR_EXCEPTIONS; |
307 | FP_UNPACK_DP(DB, vb.dp); | 299 | FP_UNPACK_DP(DB, vb.dp); |
308 | #ifdef DEBUG | 300 | |
309 | printk("DB: %ld %08lx %08lx %ld (%ld)\n", | 301 | pr_debug("DB: %ld %08lx %08lx %ld (%ld)\n", |
310 | DB_s, DB_f1, DB_f0, DB_e, DB_c); | 302 | DB_s, DB_f1, DB_f0, DB_e, DB_c); |
311 | #endif | 303 | |
312 | FP_CONV(S, D, 1, 2, SR, DB); | 304 | FP_CONV(S, D, 1, 2, SR, DB); |
313 | goto pack_s; | 305 | goto pack_s; |
314 | } | 306 | } |
@@ -332,9 +324,8 @@ int do_spe_mathemu(struct pt_regs *regs) | |||
332 | break; | 324 | break; |
333 | 325 | ||
334 | pack_s: | 326 | pack_s: |
335 | #ifdef DEBUG | 327 | pr_debug("SR: %ld %08lx %ld (%ld)\n", SR_s, SR_f, SR_e, SR_c); |
336 | printk("SR: %ld %08lx %ld (%ld)\n", SR_s, SR_f, SR_e, SR_c); | 328 | |
337 | #endif | ||
338 | FP_PACK_SP(vc.wp + 1, SR); | 329 | FP_PACK_SP(vc.wp + 1, SR); |
339 | goto update_regs; | 330 | goto update_regs; |
340 | 331 | ||
@@ -365,12 +356,10 @@ cmp_s: | |||
365 | break; | 356 | break; |
366 | } | 357 | } |
367 | 358 | ||
368 | #ifdef DEBUG | 359 | pr_debug("DA: %ld %08lx %08lx %ld (%ld)\n", |
369 | printk("DA: %ld %08lx %08lx %ld (%ld)\n", | ||
370 | DA_s, DA_f1, DA_f0, DA_e, DA_c); | 360 | DA_s, DA_f1, DA_f0, DA_e, DA_c); |
371 | printk("DB: %ld %08lx %08lx %ld (%ld)\n", | 361 | pr_debug("DB: %ld %08lx %08lx %ld (%ld)\n", |
372 | DB_s, DB_f1, DB_f0, DB_e, DB_c); | 362 | DB_s, DB_f1, DB_f0, DB_e, DB_c); |
373 | #endif | ||
374 | 363 | ||
375 | switch (func) { | 364 | switch (func) { |
376 | case EFDABS: | 365 | case EFDABS: |
@@ -438,10 +427,10 @@ cmp_s: | |||
438 | FP_DECL_S(SB); | 427 | FP_DECL_S(SB); |
439 | FP_CLEAR_EXCEPTIONS; | 428 | FP_CLEAR_EXCEPTIONS; |
440 | FP_UNPACK_SP(SB, vb.wp + 1); | 429 | FP_UNPACK_SP(SB, vb.wp + 1); |
441 | #ifdef DEBUG | 430 | |
442 | printk("SB: %ld %08lx %ld (%ld)\n", | 431 | pr_debug("SB: %ld %08lx %ld (%ld)\n", |
443 | SB_s, SB_f, SB_e, SB_c); | 432 | SB_s, SB_f, SB_e, SB_c); |
444 | #endif | 433 | |
445 | FP_CONV(D, S, 2, 1, DR, SB); | 434 | FP_CONV(D, S, 2, 1, DR, SB); |
446 | goto pack_d; | 435 | goto pack_d; |
447 | } | 436 | } |
@@ -471,10 +460,9 @@ cmp_s: | |||
471 | break; | 460 | break; |
472 | 461 | ||
473 | pack_d: | 462 | pack_d: |
474 | #ifdef DEBUG | 463 | pr_debug("DR: %ld %08lx %08lx %ld (%ld)\n", |
475 | printk("DR: %ld %08lx %08lx %ld (%ld)\n", | ||
476 | DR_s, DR_f1, DR_f0, DR_e, DR_c); | 464 | DR_s, DR_f1, DR_f0, DR_e, DR_c); |
477 | #endif | 465 | |
478 | FP_PACK_DP(vc.dp, DR); | 466 | FP_PACK_DP(vc.dp, DR); |
479 | goto update_regs; | 467 | goto update_regs; |
480 | 468 | ||
@@ -511,12 +499,14 @@ cmp_d: | |||
511 | break; | 499 | break; |
512 | } | 500 | } |
513 | 501 | ||
514 | #ifdef DEBUG | 502 | pr_debug("SA0: %ld %08lx %ld (%ld)\n", |
515 | printk("SA0: %ld %08lx %ld (%ld)\n", SA0_s, SA0_f, SA0_e, SA0_c); | 503 | SA0_s, SA0_f, SA0_e, SA0_c); |
516 | printk("SA1: %ld %08lx %ld (%ld)\n", SA1_s, SA1_f, SA1_e, SA1_c); | 504 | pr_debug("SA1: %ld %08lx %ld (%ld)\n", |
517 | printk("SB0: %ld %08lx %ld (%ld)\n", SB0_s, SB0_f, SB0_e, SB0_c); | 505 | SA1_s, SA1_f, SA1_e, SA1_c); |
518 | printk("SB1: %ld %08lx %ld (%ld)\n", SB1_s, SB1_f, SB1_e, SB1_c); | 506 | pr_debug("SB0: %ld %08lx %ld (%ld)\n", |
519 | #endif | 507 | SB0_s, SB0_f, SB0_e, SB0_c); |
508 | pr_debug("SB1: %ld %08lx %ld (%ld)\n", | ||
509 | SB1_s, SB1_f, SB1_e, SB1_c); | ||
520 | 510 | ||
521 | switch (func) { | 511 | switch (func) { |
522 | case EVFSABS: | 512 | case EVFSABS: |
@@ -605,10 +595,11 @@ cmp_d: | |||
605 | break; | 595 | break; |
606 | 596 | ||
607 | pack_vs: | 597 | pack_vs: |
608 | #ifdef DEBUG | 598 | pr_debug("SR0: %ld %08lx %ld (%ld)\n", |
609 | printk("SR0: %ld %08lx %ld (%ld)\n", SR0_s, SR0_f, SR0_e, SR0_c); | 599 | SR0_s, SR0_f, SR0_e, SR0_c); |
610 | printk("SR1: %ld %08lx %ld (%ld)\n", SR1_s, SR1_f, SR1_e, SR1_c); | 600 | pr_debug("SR1: %ld %08lx %ld (%ld)\n", |
611 | #endif | 601 | SR1_s, SR1_f, SR1_e, SR1_c); |
602 | |||
612 | FP_PACK_SP(vc.wp, SR0); | 603 | FP_PACK_SP(vc.wp, SR0); |
613 | FP_PACK_SP(vc.wp + 1, SR1); | 604 | FP_PACK_SP(vc.wp + 1, SR1); |
614 | goto update_regs; | 605 | goto update_regs; |
@@ -646,14 +637,12 @@ update_regs: | |||
646 | current->thread.evr[fc] = vc.wp[0]; | 637 | current->thread.evr[fc] = vc.wp[0]; |
647 | regs->gpr[fc] = vc.wp[1]; | 638 | regs->gpr[fc] = vc.wp[1]; |
648 | 639 | ||
649 | #ifdef DEBUG | 640 | pr_debug("ccr = %08lx\n", regs->ccr); |
650 | printk("ccr = %08lx\n", regs->ccr); | 641 | pr_debug("cur exceptions = %08x spefscr = %08lx\n", |
651 | printk("cur exceptions = %08x spefscr = %08lx\n", | ||
652 | FP_CUR_EXCEPTIONS, __FPU_FPSCR); | 642 | FP_CUR_EXCEPTIONS, __FPU_FPSCR); |
653 | printk("vc: %08x %08x\n", vc.wp[0], vc.wp[1]); | 643 | pr_debug("vc: %08x %08x\n", vc.wp[0], vc.wp[1]); |
654 | printk("va: %08x %08x\n", va.wp[0], va.wp[1]); | 644 | pr_debug("va: %08x %08x\n", va.wp[0], va.wp[1]); |
655 | printk("vb: %08x %08x\n", vb.wp[0], vb.wp[1]); | 645 | pr_debug("vb: %08x %08x\n", vb.wp[0], vb.wp[1]); |
656 | #endif | ||
657 | 646 | ||
658 | return 0; | 647 | return 0; |
659 | 648 | ||
@@ -661,9 +650,7 @@ illegal: | |||
661 | if (have_e500_cpu_a005_erratum) { | 650 | if (have_e500_cpu_a005_erratum) { |
662 | /* according to e500 cpu a005 erratum, reissue efp inst */ | 651 | /* according to e500 cpu a005 erratum, reissue efp inst */ |
663 | regs->nip -= 4; | 652 | regs->nip -= 4; |
664 | #ifdef DEBUG | 653 | pr_debug("re-issue efp inst: %08lx\n", speinsn); |
665 | printk(KERN_DEBUG "re-issue efp inst: %08lx\n", speinsn); | ||
666 | #endif | ||
667 | return 0; | 654 | return 0; |
668 | } | 655 | } |
669 | 656 | ||
@@ -685,13 +672,20 @@ int speround_handler(struct pt_regs *regs) | |||
685 | type = insn_type(speinsn & 0x7ff); | 672 | type = insn_type(speinsn & 0x7ff); |
686 | if (type == XCR) return -ENOSYS; | 673 | if (type == XCR) return -ENOSYS; |
687 | 674 | ||
675 | __FPU_FPSCR = mfspr(SPRN_SPEFSCR); | ||
676 | pr_debug("speinsn:%08lx spefscr:%08lx\n", speinsn, __FPU_FPSCR); | ||
677 | |||
678 | /* No need to round if the result is exact */ | ||
679 | if (!(__FPU_FPSCR & FP_EX_INEXACT)) | ||
680 | return 0; | ||
681 | |||
688 | fc = (speinsn >> 21) & 0x1f; | 682 | fc = (speinsn >> 21) & 0x1f; |
689 | s_lo = regs->gpr[fc] & SIGN_BIT_S; | 683 | s_lo = regs->gpr[fc] & SIGN_BIT_S; |
690 | s_hi = current->thread.evr[fc] & SIGN_BIT_S; | 684 | s_hi = current->thread.evr[fc] & SIGN_BIT_S; |
691 | fgpr.wp[0] = current->thread.evr[fc]; | 685 | fgpr.wp[0] = current->thread.evr[fc]; |
692 | fgpr.wp[1] = regs->gpr[fc]; | 686 | fgpr.wp[1] = regs->gpr[fc]; |
693 | 687 | ||
694 | __FPU_FPSCR = mfspr(SPRN_SPEFSCR); | 688 | pr_debug("round fgpr: %08x %08x\n", fgpr.wp[0], fgpr.wp[1]); |
695 | 689 | ||
696 | switch ((speinsn >> 5) & 0x7) { | 690 | switch ((speinsn >> 5) & 0x7) { |
697 | /* Since SPE instructions on E500 core can handle round to nearest | 691 | /* Since SPE instructions on E500 core can handle round to nearest |
@@ -731,6 +725,8 @@ int speround_handler(struct pt_regs *regs) | |||
731 | current->thread.evr[fc] = fgpr.wp[0]; | 725 | current->thread.evr[fc] = fgpr.wp[0]; |
732 | regs->gpr[fc] = fgpr.wp[1]; | 726 | regs->gpr[fc] = fgpr.wp[1]; |
733 | 727 | ||
728 | pr_debug(" to fgpr: %08x %08x\n", fgpr.wp[0], fgpr.wp[1]); | ||
729 | |||
734 | return 0; | 730 | return 0; |
735 | } | 731 | } |
736 | 732 | ||
diff --git a/arch/powerpc/mm/Makefile b/arch/powerpc/mm/Makefile index bdca46e08382..991ee813d2a8 100644 --- a/arch/powerpc/mm/Makefile +++ b/arch/powerpc/mm/Makefile | |||
@@ -29,6 +29,7 @@ obj-$(CONFIG_PPC_MM_SLICES) += slice.o | |||
29 | ifeq ($(CONFIG_HUGETLB_PAGE),y) | 29 | ifeq ($(CONFIG_HUGETLB_PAGE),y) |
30 | obj-y += hugetlbpage.o | 30 | obj-y += hugetlbpage.o |
31 | obj-$(CONFIG_PPC_STD_MMU_64) += hugetlbpage-hash64.o | 31 | obj-$(CONFIG_PPC_STD_MMU_64) += hugetlbpage-hash64.o |
32 | obj-$(CONFIG_PPC_BOOK3E_MMU) += hugetlbpage-book3e.o | ||
32 | endif | 33 | endif |
33 | obj-$(CONFIG_PPC_SUBPAGE_PROT) += subpage-prot.o | 34 | obj-$(CONFIG_PPC_SUBPAGE_PROT) += subpage-prot.o |
34 | obj-$(CONFIG_NOT_COHERENT_CACHE) += dma-noncoherent.o | 35 | obj-$(CONFIG_NOT_COHERENT_CACHE) += dma-noncoherent.o |
diff --git a/arch/powerpc/mm/dma-noncoherent.c b/arch/powerpc/mm/dma-noncoherent.c index b42f76c4948d..329be36c0a8d 100644 --- a/arch/powerpc/mm/dma-noncoherent.c +++ b/arch/powerpc/mm/dma-noncoherent.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <linux/types.h> | 30 | #include <linux/types.h> |
31 | #include <linux/highmem.h> | 31 | #include <linux/highmem.h> |
32 | #include <linux/dma-mapping.h> | 32 | #include <linux/dma-mapping.h> |
33 | #include <linux/export.h> | ||
33 | 34 | ||
34 | #include <asm/tlbflush.h> | 35 | #include <asm/tlbflush.h> |
35 | 36 | ||
diff --git a/arch/powerpc/mm/fsl_booke_mmu.c b/arch/powerpc/mm/fsl_booke_mmu.c index f7802c8bba0a..66a6fd38e9cd 100644 --- a/arch/powerpc/mm/fsl_booke_mmu.c +++ b/arch/powerpc/mm/fsl_booke_mmu.c | |||
@@ -101,17 +101,17 @@ unsigned long p_mapped_by_tlbcam(phys_addr_t pa) | |||
101 | 101 | ||
102 | /* | 102 | /* |
103 | * Set up a variable-size TLB entry (tlbcam). The parameters are not checked; | 103 | * Set up a variable-size TLB entry (tlbcam). The parameters are not checked; |
104 | * in particular size must be a power of 4 between 4k and 256M (or 1G, for cpus | 104 | * in particular size must be a power of 4 between 4k and the max supported by |
105 | * that support extended page sizes). Note that while some cpus support a | 105 | * an implementation; max may further be limited by what can be represented in |
106 | * page size of 4G, we don't allow its use here. | 106 | * an unsigned long (for example, 32-bit implementations cannot support a 4GB |
107 | * size). | ||
107 | */ | 108 | */ |
108 | static void settlbcam(int index, unsigned long virt, phys_addr_t phys, | 109 | static void settlbcam(int index, unsigned long virt, phys_addr_t phys, |
109 | unsigned long size, unsigned long flags, unsigned int pid) | 110 | unsigned long size, unsigned long flags, unsigned int pid) |
110 | { | 111 | { |
111 | unsigned int tsize, lz; | 112 | unsigned int tsize; |
112 | 113 | ||
113 | asm (PPC_CNTLZL "%0,%1" : "=r" (lz) : "r" (size)); | 114 | tsize = __ilog2(size) - 10; |
114 | tsize = 21 - lz; | ||
115 | 115 | ||
116 | #ifdef CONFIG_SMP | 116 | #ifdef CONFIG_SMP |
117 | if ((flags & _PAGE_NO_CACHE) == 0) | 117 | if ((flags & _PAGE_NO_CACHE) == 0) |
@@ -146,29 +146,36 @@ static void settlbcam(int index, unsigned long virt, phys_addr_t phys, | |||
146 | loadcam_entry(index); | 146 | loadcam_entry(index); |
147 | } | 147 | } |
148 | 148 | ||
149 | unsigned long calc_cam_sz(unsigned long ram, unsigned long virt, | ||
150 | phys_addr_t phys) | ||
151 | { | ||
152 | unsigned int camsize = __ilog2(ram) & ~1U; | ||
153 | unsigned int align = __ffs(virt | phys) & ~1U; | ||
154 | unsigned long max_cam = (mfspr(SPRN_TLB1CFG) >> 16) & 0xf; | ||
155 | |||
156 | /* Convert (4^max) kB to (2^max) bytes */ | ||
157 | max_cam = max_cam * 2 + 10; | ||
158 | |||
159 | if (camsize > align) | ||
160 | camsize = align; | ||
161 | if (camsize > max_cam) | ||
162 | camsize = max_cam; | ||
163 | |||
164 | return 1UL << camsize; | ||
165 | } | ||
166 | |||
149 | unsigned long map_mem_in_cams(unsigned long ram, int max_cam_idx) | 167 | unsigned long map_mem_in_cams(unsigned long ram, int max_cam_idx) |
150 | { | 168 | { |
151 | int i; | 169 | int i; |
152 | unsigned long virt = PAGE_OFFSET; | 170 | unsigned long virt = PAGE_OFFSET; |
153 | phys_addr_t phys = memstart_addr; | 171 | phys_addr_t phys = memstart_addr; |
154 | unsigned long amount_mapped = 0; | 172 | unsigned long amount_mapped = 0; |
155 | unsigned long max_cam = (mfspr(SPRN_TLB1CFG) >> 16) & 0xf; | ||
156 | |||
157 | /* Convert (4^max) kB to (2^max) bytes */ | ||
158 | max_cam = max_cam * 2 + 10; | ||
159 | 173 | ||
160 | /* Calculate CAM values */ | 174 | /* Calculate CAM values */ |
161 | for (i = 0; ram && i < max_cam_idx; i++) { | 175 | for (i = 0; ram && i < max_cam_idx; i++) { |
162 | unsigned int camsize = __ilog2(ram) & ~1U; | ||
163 | unsigned int align = __ffs(virt | phys) & ~1U; | ||
164 | unsigned long cam_sz; | 176 | unsigned long cam_sz; |
165 | 177 | ||
166 | if (camsize > align) | 178 | cam_sz = calc_cam_sz(ram, virt, phys); |
167 | camsize = align; | ||
168 | if (camsize > max_cam) | ||
169 | camsize = max_cam; | ||
170 | |||
171 | cam_sz = 1UL << camsize; | ||
172 | settlbcam(i, virt, phys, cam_sz, PAGE_KERNEL_X, 0); | 179 | settlbcam(i, virt, phys, cam_sz, PAGE_KERNEL_X, 0); |
173 | 180 | ||
174 | ram -= cam_sz; | 181 | ram -= cam_sz; |
diff --git a/arch/powerpc/mm/gup.c b/arch/powerpc/mm/gup.c index fec13200868f..d7efdbf640c7 100644 --- a/arch/powerpc/mm/gup.c +++ b/arch/powerpc/mm/gup.c | |||
@@ -16,16 +16,6 @@ | |||
16 | 16 | ||
17 | #ifdef __HAVE_ARCH_PTE_SPECIAL | 17 | #ifdef __HAVE_ARCH_PTE_SPECIAL |
18 | 18 | ||
19 | static inline void get_huge_page_tail(struct page *page) | ||
20 | { | ||
21 | /* | ||
22 | * __split_huge_page_refcount() cannot run | ||
23 | * from under us. | ||
24 | */ | ||
25 | VM_BUG_ON(atomic_read(&page->_count) < 0); | ||
26 | atomic_inc(&page->_count); | ||
27 | } | ||
28 | |||
29 | /* | 19 | /* |
30 | * The performance critical leaf functions are made noinline otherwise gcc | 20 | * The performance critical leaf functions are made noinline otherwise gcc |
31 | * inlines everything into a single function which results in too much | 21 | * inlines everything into a single function which results in too much |
@@ -57,8 +47,6 @@ static noinline int gup_pte_range(pmd_t pmd, unsigned long addr, | |||
57 | put_page(page); | 47 | put_page(page); |
58 | return 0; | 48 | return 0; |
59 | } | 49 | } |
60 | if (PageTail(page)) | ||
61 | get_huge_page_tail(page); | ||
62 | pages[*nr] = page; | 50 | pages[*nr] = page; |
63 | (*nr)++; | 51 | (*nr)++; |
64 | 52 | ||
diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c index 26b2872b3d00..2d282186cb45 100644 --- a/arch/powerpc/mm/hash_utils_64.c +++ b/arch/powerpc/mm/hash_utils_64.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/proc_fs.h> | 27 | #include <linux/proc_fs.h> |
28 | #include <linux/stat.h> | 28 | #include <linux/stat.h> |
29 | #include <linux/sysctl.h> | 29 | #include <linux/sysctl.h> |
30 | #include <linux/export.h> | ||
30 | #include <linux/ctype.h> | 31 | #include <linux/ctype.h> |
31 | #include <linux/cache.h> | 32 | #include <linux/cache.h> |
32 | #include <linux/init.h> | 33 | #include <linux/init.h> |
@@ -105,9 +106,6 @@ int mmu_kernel_ssize = MMU_SEGSIZE_256M; | |||
105 | int mmu_highuser_ssize = MMU_SEGSIZE_256M; | 106 | int mmu_highuser_ssize = MMU_SEGSIZE_256M; |
106 | u16 mmu_slb_size = 64; | 107 | u16 mmu_slb_size = 64; |
107 | EXPORT_SYMBOL_GPL(mmu_slb_size); | 108 | EXPORT_SYMBOL_GPL(mmu_slb_size); |
108 | #ifdef CONFIG_HUGETLB_PAGE | ||
109 | unsigned int HPAGE_SHIFT; | ||
110 | #endif | ||
111 | #ifdef CONFIG_PPC_64K_PAGES | 109 | #ifdef CONFIG_PPC_64K_PAGES |
112 | int mmu_ci_restrictions; | 110 | int mmu_ci_restrictions; |
113 | #endif | 111 | #endif |
@@ -534,11 +532,11 @@ static unsigned long __init htab_get_table_size(void) | |||
534 | } | 532 | } |
535 | 533 | ||
536 | #ifdef CONFIG_MEMORY_HOTPLUG | 534 | #ifdef CONFIG_MEMORY_HOTPLUG |
537 | void create_section_mapping(unsigned long start, unsigned long end) | 535 | int create_section_mapping(unsigned long start, unsigned long end) |
538 | { | 536 | { |
539 | BUG_ON(htab_bolt_mapping(start, end, __pa(start), | 537 | return htab_bolt_mapping(start, end, __pa(start), |
540 | pgprot_val(PAGE_KERNEL), mmu_linear_psize, | 538 | pgprot_val(PAGE_KERNEL), mmu_linear_psize, |
541 | mmu_kernel_ssize)); | 539 | mmu_kernel_ssize); |
542 | } | 540 | } |
543 | 541 | ||
544 | int remove_section_mapping(unsigned long start, unsigned long end) | 542 | int remove_section_mapping(unsigned long start, unsigned long end) |
diff --git a/arch/powerpc/mm/hugetlbpage-book3e.c b/arch/powerpc/mm/hugetlbpage-book3e.c new file mode 100644 index 000000000000..343ad0b87261 --- /dev/null +++ b/arch/powerpc/mm/hugetlbpage-book3e.c | |||
@@ -0,0 +1,121 @@ | |||
1 | /* | ||
2 | * PPC Huge TLB Page Support for Book3E MMU | ||
3 | * | ||
4 | * Copyright (C) 2009 David Gibson, IBM Corporation. | ||
5 | * Copyright (C) 2011 Becky Bruce, Freescale Semiconductor | ||
6 | * | ||
7 | */ | ||
8 | #include <linux/mm.h> | ||
9 | #include <linux/hugetlb.h> | ||
10 | |||
11 | static inline int mmu_get_tsize(int psize) | ||
12 | { | ||
13 | return mmu_psize_defs[psize].enc; | ||
14 | } | ||
15 | |||
16 | static inline int book3e_tlb_exists(unsigned long ea, unsigned long pid) | ||
17 | { | ||
18 | int found = 0; | ||
19 | |||
20 | mtspr(SPRN_MAS6, pid << 16); | ||
21 | if (mmu_has_feature(MMU_FTR_USE_TLBRSRV)) { | ||
22 | asm volatile( | ||
23 | "li %0,0\n" | ||
24 | "tlbsx. 0,%1\n" | ||
25 | "bne 1f\n" | ||
26 | "li %0,1\n" | ||
27 | "1:\n" | ||
28 | : "=&r"(found) : "r"(ea)); | ||
29 | } else { | ||
30 | asm volatile( | ||
31 | "tlbsx 0,%1\n" | ||
32 | "mfspr %0,0x271\n" | ||
33 | "srwi %0,%0,31\n" | ||
34 | : "=&r"(found) : "r"(ea)); | ||
35 | } | ||
36 | |||
37 | return found; | ||
38 | } | ||
39 | |||
40 | void book3e_hugetlb_preload(struct mm_struct *mm, unsigned long ea, pte_t pte) | ||
41 | { | ||
42 | unsigned long mas1, mas2; | ||
43 | u64 mas7_3; | ||
44 | unsigned long psize, tsize, shift; | ||
45 | unsigned long flags; | ||
46 | |||
47 | #ifdef CONFIG_PPC_FSL_BOOK3E | ||
48 | int index, lz, ncams; | ||
49 | struct vm_area_struct *vma; | ||
50 | #endif | ||
51 | |||
52 | if (unlikely(is_kernel_addr(ea))) | ||
53 | return; | ||
54 | |||
55 | #ifdef CONFIG_PPC_MM_SLICES | ||
56 | psize = mmu_get_tsize(get_slice_psize(mm, ea)); | ||
57 | tsize = mmu_get_psize(psize); | ||
58 | shift = mmu_psize_defs[psize].shift; | ||
59 | #else | ||
60 | vma = find_vma(mm, ea); | ||
61 | psize = vma_mmu_pagesize(vma); /* returns actual size in bytes */ | ||
62 | asm (PPC_CNTLZL "%0,%1" : "=r" (lz) : "r" (psize)); | ||
63 | shift = 31 - lz; | ||
64 | tsize = 21 - lz; | ||
65 | #endif | ||
66 | |||
67 | /* | ||
68 | * We can't be interrupted while we're setting up the MAS | ||
69 | * regusters or after we've confirmed that no tlb exists. | ||
70 | */ | ||
71 | local_irq_save(flags); | ||
72 | |||
73 | if (unlikely(book3e_tlb_exists(ea, mm->context.id))) { | ||
74 | local_irq_restore(flags); | ||
75 | return; | ||
76 | } | ||
77 | |||
78 | #ifdef CONFIG_PPC_FSL_BOOK3E | ||
79 | ncams = mfspr(SPRN_TLB1CFG) & TLBnCFG_N_ENTRY; | ||
80 | |||
81 | /* We have to use the CAM(TLB1) on FSL parts for hugepages */ | ||
82 | index = __get_cpu_var(next_tlbcam_idx); | ||
83 | mtspr(SPRN_MAS0, MAS0_ESEL(index) | MAS0_TLBSEL(1)); | ||
84 | |||
85 | /* Just round-robin the entries and wrap when we hit the end */ | ||
86 | if (unlikely(index == ncams - 1)) | ||
87 | __get_cpu_var(next_tlbcam_idx) = tlbcam_index; | ||
88 | else | ||
89 | __get_cpu_var(next_tlbcam_idx)++; | ||
90 | #endif | ||
91 | mas1 = MAS1_VALID | MAS1_TID(mm->context.id) | MAS1_TSIZE(tsize); | ||
92 | mas2 = ea & ~((1UL << shift) - 1); | ||
93 | mas2 |= (pte_val(pte) >> PTE_WIMGE_SHIFT) & MAS2_WIMGE_MASK; | ||
94 | mas7_3 = (u64)pte_pfn(pte) << PAGE_SHIFT; | ||
95 | mas7_3 |= (pte_val(pte) >> PTE_BAP_SHIFT) & MAS3_BAP_MASK; | ||
96 | if (!pte_dirty(pte)) | ||
97 | mas7_3 &= ~(MAS3_SW|MAS3_UW); | ||
98 | |||
99 | mtspr(SPRN_MAS1, mas1); | ||
100 | mtspr(SPRN_MAS2, mas2); | ||
101 | |||
102 | if (mmu_has_feature(MMU_FTR_USE_PAIRED_MAS)) { | ||
103 | mtspr(SPRN_MAS7_MAS3, mas7_3); | ||
104 | } else { | ||
105 | mtspr(SPRN_MAS7, upper_32_bits(mas7_3)); | ||
106 | mtspr(SPRN_MAS3, lower_32_bits(mas7_3)); | ||
107 | } | ||
108 | |||
109 | asm volatile ("tlbwe"); | ||
110 | |||
111 | local_irq_restore(flags); | ||
112 | } | ||
113 | |||
114 | void flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr) | ||
115 | { | ||
116 | struct hstate *hstate = hstate_file(vma->vm_file); | ||
117 | unsigned long tsize = huge_page_shift(hstate) - 10; | ||
118 | |||
119 | __flush_tlb_page(vma ? vma->vm_mm : NULL, vmaddr, tsize, 0); | ||
120 | |||
121 | } | ||
diff --git a/arch/powerpc/mm/hugetlbpage.c b/arch/powerpc/mm/hugetlbpage.c index 0b9a5c1901b9..5964371303ac 100644 --- a/arch/powerpc/mm/hugetlbpage.c +++ b/arch/powerpc/mm/hugetlbpage.c | |||
@@ -1,7 +1,8 @@ | |||
1 | /* | 1 | /* |
2 | * PPC64 (POWER4) Huge TLB Page Support for Kernel. | 2 | * PPC Huge TLB Page Support for Kernel. |
3 | * | 3 | * |
4 | * Copyright (C) 2003 David Gibson, IBM Corporation. | 4 | * Copyright (C) 2003 David Gibson, IBM Corporation. |
5 | * Copyright (C) 2011 Becky Bruce, Freescale Semiconductor | ||
5 | * | 6 | * |
6 | * Based on the IA-32 version: | 7 | * Based on the IA-32 version: |
7 | * Copyright (C) 2002, Rohit Seth <rohit.seth@intel.com> | 8 | * Copyright (C) 2002, Rohit Seth <rohit.seth@intel.com> |
@@ -11,24 +12,39 @@ | |||
11 | #include <linux/io.h> | 12 | #include <linux/io.h> |
12 | #include <linux/slab.h> | 13 | #include <linux/slab.h> |
13 | #include <linux/hugetlb.h> | 14 | #include <linux/hugetlb.h> |
15 | #include <linux/of_fdt.h> | ||
16 | #include <linux/memblock.h> | ||
17 | #include <linux/bootmem.h> | ||
14 | #include <asm/pgtable.h> | 18 | #include <asm/pgtable.h> |
15 | #include <asm/pgalloc.h> | 19 | #include <asm/pgalloc.h> |
16 | #include <asm/tlb.h> | 20 | #include <asm/tlb.h> |
21 | #include <asm/setup.h> | ||
17 | 22 | ||
18 | #define PAGE_SHIFT_64K 16 | 23 | #define PAGE_SHIFT_64K 16 |
19 | #define PAGE_SHIFT_16M 24 | 24 | #define PAGE_SHIFT_16M 24 |
20 | #define PAGE_SHIFT_16G 34 | 25 | #define PAGE_SHIFT_16G 34 |
21 | 26 | ||
22 | #define MAX_NUMBER_GPAGES 1024 | 27 | unsigned int HPAGE_SHIFT; |
23 | 28 | ||
24 | /* Tracks the 16G pages after the device tree is scanned and before the | 29 | /* |
25 | * huge_boot_pages list is ready. */ | 30 | * Tracks gpages after the device tree is scanned and before the |
26 | static unsigned long gpage_freearray[MAX_NUMBER_GPAGES]; | 31 | * huge_boot_pages list is ready. On 64-bit implementations, this is |
32 | * just used to track 16G pages and so is a single array. 32-bit | ||
33 | * implementations may have more than one gpage size due to limitations | ||
34 | * of the memory allocators, so we need multiple arrays | ||
35 | */ | ||
36 | #ifdef CONFIG_PPC64 | ||
37 | #define MAX_NUMBER_GPAGES 1024 | ||
38 | static u64 gpage_freearray[MAX_NUMBER_GPAGES]; | ||
27 | static unsigned nr_gpages; | 39 | static unsigned nr_gpages; |
28 | 40 | #else | |
29 | /* Flag to mark huge PD pointers. This means pmd_bad() and pud_bad() | 41 | #define MAX_NUMBER_GPAGES 128 |
30 | * will choke on pointers to hugepte tables, which is handy for | 42 | struct psize_gpages { |
31 | * catching screwups early. */ | 43 | u64 gpage_list[MAX_NUMBER_GPAGES]; |
44 | unsigned int nr_gpages; | ||
45 | }; | ||
46 | static struct psize_gpages gpage_freearray[MMU_PAGE_COUNT]; | ||
47 | #endif | ||
32 | 48 | ||
33 | static inline int shift_to_mmu_psize(unsigned int shift) | 49 | static inline int shift_to_mmu_psize(unsigned int shift) |
34 | { | 50 | { |
@@ -49,25 +65,6 @@ static inline unsigned int mmu_psize_to_shift(unsigned int mmu_psize) | |||
49 | 65 | ||
50 | #define hugepd_none(hpd) ((hpd).pd == 0) | 66 | #define hugepd_none(hpd) ((hpd).pd == 0) |
51 | 67 | ||
52 | static inline pte_t *hugepd_page(hugepd_t hpd) | ||
53 | { | ||
54 | BUG_ON(!hugepd_ok(hpd)); | ||
55 | return (pte_t *)((hpd.pd & ~HUGEPD_SHIFT_MASK) | 0xc000000000000000); | ||
56 | } | ||
57 | |||
58 | static inline unsigned int hugepd_shift(hugepd_t hpd) | ||
59 | { | ||
60 | return hpd.pd & HUGEPD_SHIFT_MASK; | ||
61 | } | ||
62 | |||
63 | static inline pte_t *hugepte_offset(hugepd_t *hpdp, unsigned long addr, unsigned pdshift) | ||
64 | { | ||
65 | unsigned long idx = (addr & ((1UL << pdshift) - 1)) >> hugepd_shift(*hpdp); | ||
66 | pte_t *dir = hugepd_page(*hpdp); | ||
67 | |||
68 | return dir + idx; | ||
69 | } | ||
70 | |||
71 | pte_t *find_linux_pte_or_hugepte(pgd_t *pgdir, unsigned long ea, unsigned *shift) | 68 | pte_t *find_linux_pte_or_hugepte(pgd_t *pgdir, unsigned long ea, unsigned *shift) |
72 | { | 69 | { |
73 | pgd_t *pg; | 70 | pgd_t *pg; |
@@ -93,7 +90,7 @@ pte_t *find_linux_pte_or_hugepte(pgd_t *pgdir, unsigned long ea, unsigned *shift | |||
93 | if (is_hugepd(pm)) | 90 | if (is_hugepd(pm)) |
94 | hpdp = (hugepd_t *)pm; | 91 | hpdp = (hugepd_t *)pm; |
95 | else if (!pmd_none(*pm)) { | 92 | else if (!pmd_none(*pm)) { |
96 | return pte_offset_map(pm, ea); | 93 | return pte_offset_kernel(pm, ea); |
97 | } | 94 | } |
98 | } | 95 | } |
99 | } | 96 | } |
@@ -114,8 +111,18 @@ pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr) | |||
114 | static int __hugepte_alloc(struct mm_struct *mm, hugepd_t *hpdp, | 111 | static int __hugepte_alloc(struct mm_struct *mm, hugepd_t *hpdp, |
115 | unsigned long address, unsigned pdshift, unsigned pshift) | 112 | unsigned long address, unsigned pdshift, unsigned pshift) |
116 | { | 113 | { |
117 | pte_t *new = kmem_cache_zalloc(PGT_CACHE(pdshift - pshift), | 114 | struct kmem_cache *cachep; |
118 | GFP_KERNEL|__GFP_REPEAT); | 115 | pte_t *new; |
116 | |||
117 | #ifdef CONFIG_PPC64 | ||
118 | cachep = PGT_CACHE(pdshift - pshift); | ||
119 | #else | ||
120 | int i; | ||
121 | int num_hugepd = 1 << (pshift - pdshift); | ||
122 | cachep = hugepte_cache; | ||
123 | #endif | ||
124 | |||
125 | new = kmem_cache_zalloc(cachep, GFP_KERNEL|__GFP_REPEAT); | ||
119 | 126 | ||
120 | BUG_ON(pshift > HUGEPD_SHIFT_MASK); | 127 | BUG_ON(pshift > HUGEPD_SHIFT_MASK); |
121 | BUG_ON((unsigned long)new & HUGEPD_SHIFT_MASK); | 128 | BUG_ON((unsigned long)new & HUGEPD_SHIFT_MASK); |
@@ -124,10 +131,31 @@ static int __hugepte_alloc(struct mm_struct *mm, hugepd_t *hpdp, | |||
124 | return -ENOMEM; | 131 | return -ENOMEM; |
125 | 132 | ||
126 | spin_lock(&mm->page_table_lock); | 133 | spin_lock(&mm->page_table_lock); |
134 | #ifdef CONFIG_PPC64 | ||
127 | if (!hugepd_none(*hpdp)) | 135 | if (!hugepd_none(*hpdp)) |
128 | kmem_cache_free(PGT_CACHE(pdshift - pshift), new); | 136 | kmem_cache_free(cachep, new); |
129 | else | 137 | else |
130 | hpdp->pd = ((unsigned long)new & ~0x8000000000000000) | pshift; | 138 | hpdp->pd = ((unsigned long)new & ~PD_HUGE) | pshift; |
139 | #else | ||
140 | /* | ||
141 | * We have multiple higher-level entries that point to the same | ||
142 | * actual pte location. Fill in each as we go and backtrack on error. | ||
143 | * We need all of these so the DTLB pgtable walk code can find the | ||
144 | * right higher-level entry without knowing if it's a hugepage or not. | ||
145 | */ | ||
146 | for (i = 0; i < num_hugepd; i++, hpdp++) { | ||
147 | if (unlikely(!hugepd_none(*hpdp))) | ||
148 | break; | ||
149 | else | ||
150 | hpdp->pd = ((unsigned long)new & ~PD_HUGE) | pshift; | ||
151 | } | ||
152 | /* If we bailed from the for loop early, an error occurred, clean up */ | ||
153 | if (i < num_hugepd) { | ||
154 | for (i = i - 1 ; i >= 0; i--, hpdp--) | ||
155 | hpdp->pd = 0; | ||
156 | kmem_cache_free(cachep, new); | ||
157 | } | ||
158 | #endif | ||
131 | spin_unlock(&mm->page_table_lock); | 159 | spin_unlock(&mm->page_table_lock); |
132 | return 0; | 160 | return 0; |
133 | } | 161 | } |
@@ -169,11 +197,132 @@ pte_t *huge_pte_alloc(struct mm_struct *mm, unsigned long addr, unsigned long sz | |||
169 | return hugepte_offset(hpdp, addr, pdshift); | 197 | return hugepte_offset(hpdp, addr, pdshift); |
170 | } | 198 | } |
171 | 199 | ||
200 | #ifdef CONFIG_PPC32 | ||
201 | /* Build list of addresses of gigantic pages. This function is used in early | ||
202 | * boot before the buddy or bootmem allocator is setup. | ||
203 | */ | ||
204 | void add_gpage(u64 addr, u64 page_size, unsigned long number_of_pages) | ||
205 | { | ||
206 | unsigned int idx = shift_to_mmu_psize(__ffs(page_size)); | ||
207 | int i; | ||
208 | |||
209 | if (addr == 0) | ||
210 | return; | ||
211 | |||
212 | gpage_freearray[idx].nr_gpages = number_of_pages; | ||
213 | |||
214 | for (i = 0; i < number_of_pages; i++) { | ||
215 | gpage_freearray[idx].gpage_list[i] = addr; | ||
216 | addr += page_size; | ||
217 | } | ||
218 | } | ||
219 | |||
220 | /* | ||
221 | * Moves the gigantic page addresses from the temporary list to the | ||
222 | * huge_boot_pages list. | ||
223 | */ | ||
224 | int alloc_bootmem_huge_page(struct hstate *hstate) | ||
225 | { | ||
226 | struct huge_bootmem_page *m; | ||
227 | int idx = shift_to_mmu_psize(hstate->order + PAGE_SHIFT); | ||
228 | int nr_gpages = gpage_freearray[idx].nr_gpages; | ||
229 | |||
230 | if (nr_gpages == 0) | ||
231 | return 0; | ||
232 | |||
233 | #ifdef CONFIG_HIGHMEM | ||
234 | /* | ||
235 | * If gpages can be in highmem we can't use the trick of storing the | ||
236 | * data structure in the page; allocate space for this | ||
237 | */ | ||
238 | m = alloc_bootmem(sizeof(struct huge_bootmem_page)); | ||
239 | m->phys = gpage_freearray[idx].gpage_list[--nr_gpages]; | ||
240 | #else | ||
241 | m = phys_to_virt(gpage_freearray[idx].gpage_list[--nr_gpages]); | ||
242 | #endif | ||
243 | |||
244 | list_add(&m->list, &huge_boot_pages); | ||
245 | gpage_freearray[idx].nr_gpages = nr_gpages; | ||
246 | gpage_freearray[idx].gpage_list[nr_gpages] = 0; | ||
247 | m->hstate = hstate; | ||
248 | |||
249 | return 1; | ||
250 | } | ||
251 | /* | ||
252 | * Scan the command line hugepagesz= options for gigantic pages; store those in | ||
253 | * a list that we use to allocate the memory once all options are parsed. | ||
254 | */ | ||
255 | |||
256 | unsigned long gpage_npages[MMU_PAGE_COUNT]; | ||
257 | |||
258 | static int __init do_gpage_early_setup(char *param, char *val) | ||
259 | { | ||
260 | static phys_addr_t size; | ||
261 | unsigned long npages; | ||
262 | |||
263 | /* | ||
264 | * The hugepagesz and hugepages cmdline options are interleaved. We | ||
265 | * use the size variable to keep track of whether or not this was done | ||
266 | * properly and skip over instances where it is incorrect. Other | ||
267 | * command-line parsing code will issue warnings, so we don't need to. | ||
268 | * | ||
269 | */ | ||
270 | if ((strcmp(param, "default_hugepagesz") == 0) || | ||
271 | (strcmp(param, "hugepagesz") == 0)) { | ||
272 | size = memparse(val, NULL); | ||
273 | } else if (strcmp(param, "hugepages") == 0) { | ||
274 | if (size != 0) { | ||
275 | if (sscanf(val, "%lu", &npages) <= 0) | ||
276 | npages = 0; | ||
277 | gpage_npages[shift_to_mmu_psize(__ffs(size))] = npages; | ||
278 | size = 0; | ||
279 | } | ||
280 | } | ||
281 | return 0; | ||
282 | } | ||
283 | |||
284 | |||
285 | /* | ||
286 | * This function allocates physical space for pages that are larger than the | ||
287 | * buddy allocator can handle. We want to allocate these in highmem because | ||
288 | * the amount of lowmem is limited. This means that this function MUST be | ||
289 | * called before lowmem_end_addr is set up in MMU_init() in order for the lmb | ||
290 | * allocate to grab highmem. | ||
291 | */ | ||
292 | void __init reserve_hugetlb_gpages(void) | ||
293 | { | ||
294 | static __initdata char cmdline[COMMAND_LINE_SIZE]; | ||
295 | phys_addr_t size, base; | ||
296 | int i; | ||
297 | |||
298 | strlcpy(cmdline, boot_command_line, COMMAND_LINE_SIZE); | ||
299 | parse_args("hugetlb gpages", cmdline, NULL, 0, &do_gpage_early_setup); | ||
300 | |||
301 | /* | ||
302 | * Walk gpage list in reverse, allocating larger page sizes first. | ||
303 | * Skip over unsupported sizes, or sizes that have 0 gpages allocated. | ||
304 | * When we reach the point in the list where pages are no longer | ||
305 | * considered gpages, we're done. | ||
306 | */ | ||
307 | for (i = MMU_PAGE_COUNT-1; i >= 0; i--) { | ||
308 | if (mmu_psize_defs[i].shift == 0 || gpage_npages[i] == 0) | ||
309 | continue; | ||
310 | else if (mmu_psize_to_shift(i) < (MAX_ORDER + PAGE_SHIFT)) | ||
311 | break; | ||
312 | |||
313 | size = (phys_addr_t)(1ULL << mmu_psize_to_shift(i)); | ||
314 | base = memblock_alloc_base(size * gpage_npages[i], size, | ||
315 | MEMBLOCK_ALLOC_ANYWHERE); | ||
316 | add_gpage(base, size, gpage_npages[i]); | ||
317 | } | ||
318 | } | ||
319 | |||
320 | #else /* PPC64 */ | ||
321 | |||
172 | /* Build list of addresses of gigantic pages. This function is used in early | 322 | /* Build list of addresses of gigantic pages. This function is used in early |
173 | * boot before the buddy or bootmem allocator is setup. | 323 | * boot before the buddy or bootmem allocator is setup. |
174 | */ | 324 | */ |
175 | void add_gpage(unsigned long addr, unsigned long page_size, | 325 | void add_gpage(u64 addr, u64 page_size, unsigned long number_of_pages) |
176 | unsigned long number_of_pages) | ||
177 | { | 326 | { |
178 | if (!addr) | 327 | if (!addr) |
179 | return; | 328 | return; |
@@ -199,19 +348,79 @@ int alloc_bootmem_huge_page(struct hstate *hstate) | |||
199 | m->hstate = hstate; | 348 | m->hstate = hstate; |
200 | return 1; | 349 | return 1; |
201 | } | 350 | } |
351 | #endif | ||
202 | 352 | ||
203 | int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep) | 353 | int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep) |
204 | { | 354 | { |
205 | return 0; | 355 | return 0; |
206 | } | 356 | } |
207 | 357 | ||
358 | #ifdef CONFIG_PPC32 | ||
359 | #define HUGEPD_FREELIST_SIZE \ | ||
360 | ((PAGE_SIZE - sizeof(struct hugepd_freelist)) / sizeof(pte_t)) | ||
361 | |||
362 | struct hugepd_freelist { | ||
363 | struct rcu_head rcu; | ||
364 | unsigned int index; | ||
365 | void *ptes[0]; | ||
366 | }; | ||
367 | |||
368 | static DEFINE_PER_CPU(struct hugepd_freelist *, hugepd_freelist_cur); | ||
369 | |||
370 | static void hugepd_free_rcu_callback(struct rcu_head *head) | ||
371 | { | ||
372 | struct hugepd_freelist *batch = | ||
373 | container_of(head, struct hugepd_freelist, rcu); | ||
374 | unsigned int i; | ||
375 | |||
376 | for (i = 0; i < batch->index; i++) | ||
377 | kmem_cache_free(hugepte_cache, batch->ptes[i]); | ||
378 | |||
379 | free_page((unsigned long)batch); | ||
380 | } | ||
381 | |||
382 | static void hugepd_free(struct mmu_gather *tlb, void *hugepte) | ||
383 | { | ||
384 | struct hugepd_freelist **batchp; | ||
385 | |||
386 | batchp = &__get_cpu_var(hugepd_freelist_cur); | ||
387 | |||
388 | if (atomic_read(&tlb->mm->mm_users) < 2 || | ||
389 | cpumask_equal(mm_cpumask(tlb->mm), | ||
390 | cpumask_of(smp_processor_id()))) { | ||
391 | kmem_cache_free(hugepte_cache, hugepte); | ||
392 | return; | ||
393 | } | ||
394 | |||
395 | if (*batchp == NULL) { | ||
396 | *batchp = (struct hugepd_freelist *)__get_free_page(GFP_ATOMIC); | ||
397 | (*batchp)->index = 0; | ||
398 | } | ||
399 | |||
400 | (*batchp)->ptes[(*batchp)->index++] = hugepte; | ||
401 | if ((*batchp)->index == HUGEPD_FREELIST_SIZE) { | ||
402 | call_rcu_sched(&(*batchp)->rcu, hugepd_free_rcu_callback); | ||
403 | *batchp = NULL; | ||
404 | } | ||
405 | } | ||
406 | #endif | ||
407 | |||
208 | static void free_hugepd_range(struct mmu_gather *tlb, hugepd_t *hpdp, int pdshift, | 408 | static void free_hugepd_range(struct mmu_gather *tlb, hugepd_t *hpdp, int pdshift, |
209 | unsigned long start, unsigned long end, | 409 | unsigned long start, unsigned long end, |
210 | unsigned long floor, unsigned long ceiling) | 410 | unsigned long floor, unsigned long ceiling) |
211 | { | 411 | { |
212 | pte_t *hugepte = hugepd_page(*hpdp); | 412 | pte_t *hugepte = hugepd_page(*hpdp); |
213 | unsigned shift = hugepd_shift(*hpdp); | 413 | int i; |
414 | |||
214 | unsigned long pdmask = ~((1UL << pdshift) - 1); | 415 | unsigned long pdmask = ~((1UL << pdshift) - 1); |
416 | unsigned int num_hugepd = 1; | ||
417 | |||
418 | #ifdef CONFIG_PPC64 | ||
419 | unsigned int shift = hugepd_shift(*hpdp); | ||
420 | #else | ||
421 | /* Note: On 32-bit the hpdp may be the first of several */ | ||
422 | num_hugepd = (1 << (hugepd_shift(*hpdp) - pdshift)); | ||
423 | #endif | ||
215 | 424 | ||
216 | start &= pdmask; | 425 | start &= pdmask; |
217 | if (start < floor) | 426 | if (start < floor) |
@@ -224,9 +433,15 @@ static void free_hugepd_range(struct mmu_gather *tlb, hugepd_t *hpdp, int pdshif | |||
224 | if (end - 1 > ceiling - 1) | 433 | if (end - 1 > ceiling - 1) |
225 | return; | 434 | return; |
226 | 435 | ||
227 | hpdp->pd = 0; | 436 | for (i = 0; i < num_hugepd; i++, hpdp++) |
437 | hpdp->pd = 0; | ||
438 | |||
228 | tlb->need_flush = 1; | 439 | tlb->need_flush = 1; |
440 | #ifdef CONFIG_PPC64 | ||
229 | pgtable_free_tlb(tlb, hugepte, pdshift - shift); | 441 | pgtable_free_tlb(tlb, hugepte, pdshift - shift); |
442 | #else | ||
443 | hugepd_free(tlb, hugepte); | ||
444 | #endif | ||
230 | } | 445 | } |
231 | 446 | ||
232 | static void hugetlb_free_pmd_range(struct mmu_gather *tlb, pud_t *pud, | 447 | static void hugetlb_free_pmd_range(struct mmu_gather *tlb, pud_t *pud, |
@@ -331,18 +546,27 @@ void hugetlb_free_pgd_range(struct mmu_gather *tlb, | |||
331 | * too. | 546 | * too. |
332 | */ | 547 | */ |
333 | 548 | ||
334 | pgd = pgd_offset(tlb->mm, addr); | ||
335 | do { | 549 | do { |
336 | next = pgd_addr_end(addr, end); | 550 | next = pgd_addr_end(addr, end); |
551 | pgd = pgd_offset(tlb->mm, addr); | ||
337 | if (!is_hugepd(pgd)) { | 552 | if (!is_hugepd(pgd)) { |
338 | if (pgd_none_or_clear_bad(pgd)) | 553 | if (pgd_none_or_clear_bad(pgd)) |
339 | continue; | 554 | continue; |
340 | hugetlb_free_pud_range(tlb, pgd, addr, next, floor, ceiling); | 555 | hugetlb_free_pud_range(tlb, pgd, addr, next, floor, ceiling); |
341 | } else { | 556 | } else { |
557 | #ifdef CONFIG_PPC32 | ||
558 | /* | ||
559 | * Increment next by the size of the huge mapping since | ||
560 | * on 32-bit there may be more than one entry at the pgd | ||
561 | * level for a single hugepage, but all of them point to | ||
562 | * the same kmem cache that holds the hugepte. | ||
563 | */ | ||
564 | next = addr + (1 << hugepd_shift(*(hugepd_t *)pgd)); | ||
565 | #endif | ||
342 | free_hugepd_range(tlb, (hugepd_t *)pgd, PGDIR_SHIFT, | 566 | free_hugepd_range(tlb, (hugepd_t *)pgd, PGDIR_SHIFT, |
343 | addr, next, floor, ceiling); | 567 | addr, next, floor, ceiling); |
344 | } | 568 | } |
345 | } while (pgd++, addr = next, addr != end); | 569 | } while (addr = next, addr != end); |
346 | } | 570 | } |
347 | 571 | ||
348 | struct page * | 572 | struct page * |
@@ -390,7 +614,7 @@ static noinline int gup_hugepte(pte_t *ptep, unsigned long sz, unsigned long add | |||
390 | { | 614 | { |
391 | unsigned long mask; | 615 | unsigned long mask; |
392 | unsigned long pte_end; | 616 | unsigned long pte_end; |
393 | struct page *head, *page; | 617 | struct page *head, *page, *tail; |
394 | pte_t pte; | 618 | pte_t pte; |
395 | int refs; | 619 | int refs; |
396 | 620 | ||
@@ -413,6 +637,7 @@ static noinline int gup_hugepte(pte_t *ptep, unsigned long sz, unsigned long add | |||
413 | head = pte_page(pte); | 637 | head = pte_page(pte); |
414 | 638 | ||
415 | page = head + ((addr & (sz-1)) >> PAGE_SHIFT); | 639 | page = head + ((addr & (sz-1)) >> PAGE_SHIFT); |
640 | tail = page; | ||
416 | do { | 641 | do { |
417 | VM_BUG_ON(compound_head(page) != head); | 642 | VM_BUG_ON(compound_head(page) != head); |
418 | pages[*nr] = page; | 643 | pages[*nr] = page; |
@@ -428,10 +653,20 @@ static noinline int gup_hugepte(pte_t *ptep, unsigned long sz, unsigned long add | |||
428 | 653 | ||
429 | if (unlikely(pte_val(pte) != pte_val(*ptep))) { | 654 | if (unlikely(pte_val(pte) != pte_val(*ptep))) { |
430 | /* Could be optimized better */ | 655 | /* Could be optimized better */ |
431 | while (*nr) { | 656 | *nr -= refs; |
432 | put_page(page); | 657 | while (refs--) |
433 | (*nr)--; | 658 | put_page(head); |
434 | } | 659 | return 0; |
660 | } | ||
661 | |||
662 | /* | ||
663 | * Any tail page need their mapcount reference taken before we | ||
664 | * return. | ||
665 | */ | ||
666 | while (refs--) { | ||
667 | if (PageTail(tail)) | ||
668 | get_huge_page_tail(tail); | ||
669 | tail++; | ||
435 | } | 670 | } |
436 | 671 | ||
437 | return 1; | 672 | return 1; |
@@ -466,17 +701,35 @@ unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr, | |||
466 | unsigned long len, unsigned long pgoff, | 701 | unsigned long len, unsigned long pgoff, |
467 | unsigned long flags) | 702 | unsigned long flags) |
468 | { | 703 | { |
704 | #ifdef CONFIG_PPC_MM_SLICES | ||
469 | struct hstate *hstate = hstate_file(file); | 705 | struct hstate *hstate = hstate_file(file); |
470 | int mmu_psize = shift_to_mmu_psize(huge_page_shift(hstate)); | 706 | int mmu_psize = shift_to_mmu_psize(huge_page_shift(hstate)); |
471 | 707 | ||
472 | return slice_get_unmapped_area(addr, len, flags, mmu_psize, 1, 0); | 708 | return slice_get_unmapped_area(addr, len, flags, mmu_psize, 1, 0); |
709 | #else | ||
710 | return get_unmapped_area(file, addr, len, pgoff, flags); | ||
711 | #endif | ||
473 | } | 712 | } |
474 | 713 | ||
475 | unsigned long vma_mmu_pagesize(struct vm_area_struct *vma) | 714 | unsigned long vma_mmu_pagesize(struct vm_area_struct *vma) |
476 | { | 715 | { |
716 | #ifdef CONFIG_PPC_MM_SLICES | ||
477 | unsigned int psize = get_slice_psize(vma->vm_mm, vma->vm_start); | 717 | unsigned int psize = get_slice_psize(vma->vm_mm, vma->vm_start); |
478 | 718 | ||
479 | return 1UL << mmu_psize_to_shift(psize); | 719 | return 1UL << mmu_psize_to_shift(psize); |
720 | #else | ||
721 | if (!is_vm_hugetlb_page(vma)) | ||
722 | return PAGE_SIZE; | ||
723 | |||
724 | return huge_page_size(hstate_vma(vma)); | ||
725 | #endif | ||
726 | } | ||
727 | |||
728 | static inline bool is_power_of_4(unsigned long x) | ||
729 | { | ||
730 | if (is_power_of_2(x)) | ||
731 | return (__ilog2(x) % 2) ? false : true; | ||
732 | return false; | ||
480 | } | 733 | } |
481 | 734 | ||
482 | static int __init add_huge_page_size(unsigned long long size) | 735 | static int __init add_huge_page_size(unsigned long long size) |
@@ -486,9 +739,14 @@ static int __init add_huge_page_size(unsigned long long size) | |||
486 | 739 | ||
487 | /* Check that it is a page size supported by the hardware and | 740 | /* Check that it is a page size supported by the hardware and |
488 | * that it fits within pagetable and slice limits. */ | 741 | * that it fits within pagetable and slice limits. */ |
742 | #ifdef CONFIG_PPC_FSL_BOOK3E | ||
743 | if ((size < PAGE_SIZE) || !is_power_of_4(size)) | ||
744 | return -EINVAL; | ||
745 | #else | ||
489 | if (!is_power_of_2(size) | 746 | if (!is_power_of_2(size) |
490 | || (shift > SLICE_HIGH_SHIFT) || (shift <= PAGE_SHIFT)) | 747 | || (shift > SLICE_HIGH_SHIFT) || (shift <= PAGE_SHIFT)) |
491 | return -EINVAL; | 748 | return -EINVAL; |
749 | #endif | ||
492 | 750 | ||
493 | if ((mmu_psize = shift_to_mmu_psize(shift)) < 0) | 751 | if ((mmu_psize = shift_to_mmu_psize(shift)) < 0) |
494 | return -EINVAL; | 752 | return -EINVAL; |
@@ -525,6 +783,46 @@ static int __init hugepage_setup_sz(char *str) | |||
525 | } | 783 | } |
526 | __setup("hugepagesz=", hugepage_setup_sz); | 784 | __setup("hugepagesz=", hugepage_setup_sz); |
527 | 785 | ||
786 | #ifdef CONFIG_FSL_BOOKE | ||
787 | struct kmem_cache *hugepte_cache; | ||
788 | static int __init hugetlbpage_init(void) | ||
789 | { | ||
790 | int psize; | ||
791 | |||
792 | for (psize = 0; psize < MMU_PAGE_COUNT; ++psize) { | ||
793 | unsigned shift; | ||
794 | |||
795 | if (!mmu_psize_defs[psize].shift) | ||
796 | continue; | ||
797 | |||
798 | shift = mmu_psize_to_shift(psize); | ||
799 | |||
800 | /* Don't treat normal page sizes as huge... */ | ||
801 | if (shift != PAGE_SHIFT) | ||
802 | if (add_huge_page_size(1ULL << shift) < 0) | ||
803 | continue; | ||
804 | } | ||
805 | |||
806 | /* | ||
807 | * Create a kmem cache for hugeptes. The bottom bits in the pte have | ||
808 | * size information encoded in them, so align them to allow this | ||
809 | */ | ||
810 | hugepte_cache = kmem_cache_create("hugepte-cache", sizeof(pte_t), | ||
811 | HUGEPD_SHIFT_MASK + 1, 0, NULL); | ||
812 | if (hugepte_cache == NULL) | ||
813 | panic("%s: Unable to create kmem cache for hugeptes\n", | ||
814 | __func__); | ||
815 | |||
816 | /* Default hpage size = 4M */ | ||
817 | if (mmu_psize_defs[MMU_PAGE_4M].shift) | ||
818 | HPAGE_SHIFT = mmu_psize_defs[MMU_PAGE_4M].shift; | ||
819 | else | ||
820 | panic("%s: Unable to set default huge page size\n", __func__); | ||
821 | |||
822 | |||
823 | return 0; | ||
824 | } | ||
825 | #else | ||
528 | static int __init hugetlbpage_init(void) | 826 | static int __init hugetlbpage_init(void) |
529 | { | 827 | { |
530 | int psize; | 828 | int psize; |
@@ -567,15 +865,23 @@ static int __init hugetlbpage_init(void) | |||
567 | 865 | ||
568 | return 0; | 866 | return 0; |
569 | } | 867 | } |
570 | 868 | #endif | |
571 | module_init(hugetlbpage_init); | 869 | module_init(hugetlbpage_init); |
572 | 870 | ||
573 | void flush_dcache_icache_hugepage(struct page *page) | 871 | void flush_dcache_icache_hugepage(struct page *page) |
574 | { | 872 | { |
575 | int i; | 873 | int i; |
874 | void *start; | ||
576 | 875 | ||
577 | BUG_ON(!PageCompound(page)); | 876 | BUG_ON(!PageCompound(page)); |
578 | 877 | ||
579 | for (i = 0; i < (1UL << compound_order(page)); i++) | 878 | for (i = 0; i < (1UL << compound_order(page)); i++) { |
580 | __flush_dcache_icache(page_address(page+i)); | 879 | if (!PageHighMem(page)) { |
880 | __flush_dcache_icache(page_address(page+i)); | ||
881 | } else { | ||
882 | start = kmap_atomic(page+i, KM_PPC_SYNC_ICACHE); | ||
883 | __flush_dcache_icache(start); | ||
884 | kunmap_atomic(start, KM_PPC_SYNC_ICACHE); | ||
885 | } | ||
886 | } | ||
581 | } | 887 | } |
diff --git a/arch/powerpc/mm/init_32.c b/arch/powerpc/mm/init_32.c index c77fef56dad6..161cefde5c15 100644 --- a/arch/powerpc/mm/init_32.c +++ b/arch/powerpc/mm/init_32.c | |||
@@ -32,6 +32,8 @@ | |||
32 | #include <linux/pagemap.h> | 32 | #include <linux/pagemap.h> |
33 | #include <linux/memblock.h> | 33 | #include <linux/memblock.h> |
34 | #include <linux/gfp.h> | 34 | #include <linux/gfp.h> |
35 | #include <linux/slab.h> | ||
36 | #include <linux/hugetlb.h> | ||
35 | 37 | ||
36 | #include <asm/pgalloc.h> | 38 | #include <asm/pgalloc.h> |
37 | #include <asm/prom.h> | 39 | #include <asm/prom.h> |
@@ -44,6 +46,7 @@ | |||
44 | #include <asm/tlb.h> | 46 | #include <asm/tlb.h> |
45 | #include <asm/sections.h> | 47 | #include <asm/sections.h> |
46 | #include <asm/system.h> | 48 | #include <asm/system.h> |
49 | #include <asm/hugetlb.h> | ||
47 | 50 | ||
48 | #include "mmu_decl.h" | 51 | #include "mmu_decl.h" |
49 | 52 | ||
@@ -123,6 +126,12 @@ void __init MMU_init(void) | |||
123 | /* parse args from command line */ | 126 | /* parse args from command line */ |
124 | MMU_setup(); | 127 | MMU_setup(); |
125 | 128 | ||
129 | /* | ||
130 | * Reserve gigantic pages for hugetlb. This MUST occur before | ||
131 | * lowmem_end_addr is initialized below. | ||
132 | */ | ||
133 | reserve_hugetlb_gpages(); | ||
134 | |||
126 | if (memblock.memory.cnt > 1) { | 135 | if (memblock.memory.cnt > 1) { |
127 | #ifndef CONFIG_WII | 136 | #ifndef CONFIG_WII |
128 | memblock.memory.cnt = 1; | 137 | memblock.memory.cnt = 1; |
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c index c781bbcf7338..2dd6bdd31fe1 100644 --- a/arch/powerpc/mm/mem.c +++ b/arch/powerpc/mm/mem.c | |||
@@ -17,7 +17,7 @@ | |||
17 | * | 17 | * |
18 | */ | 18 | */ |
19 | 19 | ||
20 | #include <linux/module.h> | 20 | #include <linux/export.h> |
21 | #include <linux/sched.h> | 21 | #include <linux/sched.h> |
22 | #include <linux/kernel.h> | 22 | #include <linux/kernel.h> |
23 | #include <linux/errno.h> | 23 | #include <linux/errno.h> |
@@ -34,6 +34,7 @@ | |||
34 | #include <linux/suspend.h> | 34 | #include <linux/suspend.h> |
35 | #include <linux/memblock.h> | 35 | #include <linux/memblock.h> |
36 | #include <linux/hugetlb.h> | 36 | #include <linux/hugetlb.h> |
37 | #include <linux/slab.h> | ||
37 | 38 | ||
38 | #include <asm/pgalloc.h> | 39 | #include <asm/pgalloc.h> |
39 | #include <asm/prom.h> | 40 | #include <asm/prom.h> |
@@ -123,7 +124,8 @@ int arch_add_memory(int nid, u64 start, u64 size) | |||
123 | pgdata = NODE_DATA(nid); | 124 | pgdata = NODE_DATA(nid); |
124 | 125 | ||
125 | start = (unsigned long)__va(start); | 126 | start = (unsigned long)__va(start); |
126 | create_section_mapping(start, start + size); | 127 | if (create_section_mapping(start, start + size)) |
128 | return -EINVAL; | ||
127 | 129 | ||
128 | /* this should work for most non-highmem platforms */ | 130 | /* this should work for most non-highmem platforms */ |
129 | zone = pgdata->node_zones; | 131 | zone = pgdata->node_zones; |
@@ -548,4 +550,38 @@ void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, | |||
548 | return; | 550 | return; |
549 | hash_preload(vma->vm_mm, address, access, trap); | 551 | hash_preload(vma->vm_mm, address, access, trap); |
550 | #endif /* CONFIG_PPC_STD_MMU */ | 552 | #endif /* CONFIG_PPC_STD_MMU */ |
553 | #if (defined(CONFIG_PPC_BOOK3E_64) || defined(CONFIG_PPC_FSL_BOOK3E)) \ | ||
554 | && defined(CONFIG_HUGETLB_PAGE) | ||
555 | if (is_vm_hugetlb_page(vma)) | ||
556 | book3e_hugetlb_preload(vma->vm_mm, address, *ptep); | ||
557 | #endif | ||
558 | } | ||
559 | |||
560 | /* | ||
561 | * System memory should not be in /proc/iomem but various tools expect it | ||
562 | * (eg kdump). | ||
563 | */ | ||
564 | static int add_system_ram_resources(void) | ||
565 | { | ||
566 | struct memblock_region *reg; | ||
567 | |||
568 | for_each_memblock(memory, reg) { | ||
569 | struct resource *res; | ||
570 | unsigned long base = reg->base; | ||
571 | unsigned long size = reg->size; | ||
572 | |||
573 | res = kzalloc(sizeof(struct resource), GFP_KERNEL); | ||
574 | WARN_ON(!res); | ||
575 | |||
576 | if (res) { | ||
577 | res->name = "System RAM"; | ||
578 | res->start = base; | ||
579 | res->end = base + size - 1; | ||
580 | res->flags = IORESOURCE_MEM; | ||
581 | WARN_ON(request_resource(&iomem_resource, res) < 0); | ||
582 | } | ||
583 | } | ||
584 | |||
585 | return 0; | ||
551 | } | 586 | } |
587 | subsys_initcall(add_system_ram_resources); | ||
diff --git a/arch/powerpc/mm/mmu_context_hash32.c b/arch/powerpc/mm/mmu_context_hash32.c index d0ee554e86e4..78fef6726e10 100644 --- a/arch/powerpc/mm/mmu_context_hash32.c +++ b/arch/powerpc/mm/mmu_context_hash32.c | |||
@@ -24,6 +24,7 @@ | |||
24 | 24 | ||
25 | #include <linux/mm.h> | 25 | #include <linux/mm.h> |
26 | #include <linux/init.h> | 26 | #include <linux/init.h> |
27 | #include <linux/export.h> | ||
27 | 28 | ||
28 | #include <asm/mmu_context.h> | 29 | #include <asm/mmu_context.h> |
29 | #include <asm/tlbflush.h> | 30 | #include <asm/tlbflush.h> |
diff --git a/arch/powerpc/mm/mmu_context_hash64.c b/arch/powerpc/mm/mmu_context_hash64.c index 3bafc3deca6d..ca988a3d5fb2 100644 --- a/arch/powerpc/mm/mmu_context_hash64.c +++ b/arch/powerpc/mm/mmu_context_hash64.c | |||
@@ -18,7 +18,7 @@ | |||
18 | #include <linux/mm.h> | 18 | #include <linux/mm.h> |
19 | #include <linux/spinlock.h> | 19 | #include <linux/spinlock.h> |
20 | #include <linux/idr.h> | 20 | #include <linux/idr.h> |
21 | #include <linux/module.h> | 21 | #include <linux/export.h> |
22 | #include <linux/gfp.h> | 22 | #include <linux/gfp.h> |
23 | #include <linux/slab.h> | 23 | #include <linux/slab.h> |
24 | 24 | ||
@@ -136,8 +136,8 @@ int use_cop(unsigned long acop, struct mm_struct *mm) | |||
136 | if (!mm || !acop) | 136 | if (!mm || !acop) |
137 | return -EINVAL; | 137 | return -EINVAL; |
138 | 138 | ||
139 | /* We need to make sure mm_users doesn't change */ | 139 | /* The page_table_lock ensures mm_users won't change under us */ |
140 | down_read(&mm->mmap_sem); | 140 | spin_lock(&mm->page_table_lock); |
141 | spin_lock(mm->context.cop_lockp); | 141 | spin_lock(mm->context.cop_lockp); |
142 | 142 | ||
143 | if (mm->context.cop_pid == COP_PID_NONE) { | 143 | if (mm->context.cop_pid == COP_PID_NONE) { |
@@ -164,7 +164,7 @@ int use_cop(unsigned long acop, struct mm_struct *mm) | |||
164 | 164 | ||
165 | out: | 165 | out: |
166 | spin_unlock(mm->context.cop_lockp); | 166 | spin_unlock(mm->context.cop_lockp); |
167 | up_read(&mm->mmap_sem); | 167 | spin_unlock(&mm->page_table_lock); |
168 | 168 | ||
169 | return ret; | 169 | return ret; |
170 | } | 170 | } |
@@ -185,8 +185,8 @@ void drop_cop(unsigned long acop, struct mm_struct *mm) | |||
185 | if (WARN_ON_ONCE(!mm)) | 185 | if (WARN_ON_ONCE(!mm)) |
186 | return; | 186 | return; |
187 | 187 | ||
188 | /* We need to make sure mm_users doesn't change */ | 188 | /* The page_table_lock ensures mm_users won't change under us */ |
189 | down_read(&mm->mmap_sem); | 189 | spin_lock(&mm->page_table_lock); |
190 | spin_lock(mm->context.cop_lockp); | 190 | spin_lock(mm->context.cop_lockp); |
191 | 191 | ||
192 | mm->context.acop &= ~acop; | 192 | mm->context.acop &= ~acop; |
@@ -213,7 +213,7 @@ void drop_cop(unsigned long acop, struct mm_struct *mm) | |||
213 | } | 213 | } |
214 | 214 | ||
215 | spin_unlock(mm->context.cop_lockp); | 215 | spin_unlock(mm->context.cop_lockp); |
216 | up_read(&mm->mmap_sem); | 216 | spin_unlock(&mm->page_table_lock); |
217 | } | 217 | } |
218 | EXPORT_SYMBOL_GPL(drop_cop); | 218 | EXPORT_SYMBOL_GPL(drop_cop); |
219 | 219 | ||
diff --git a/arch/powerpc/mm/mmu_context_nohash.c b/arch/powerpc/mm/mmu_context_nohash.c index 336807de550e..5b63bd3da4a9 100644 --- a/arch/powerpc/mm/mmu_context_nohash.c +++ b/arch/powerpc/mm/mmu_context_nohash.c | |||
@@ -292,6 +292,11 @@ int init_new_context(struct task_struct *t, struct mm_struct *mm) | |||
292 | mm->context.id = MMU_NO_CONTEXT; | 292 | mm->context.id = MMU_NO_CONTEXT; |
293 | mm->context.active = 0; | 293 | mm->context.active = 0; |
294 | 294 | ||
295 | #ifdef CONFIG_PPC_MM_SLICES | ||
296 | if (slice_mm_new_context(mm)) | ||
297 | slice_set_user_psize(mm, mmu_virtual_psize); | ||
298 | #endif | ||
299 | |||
295 | return 0; | 300 | return 0; |
296 | } | 301 | } |
297 | 302 | ||
diff --git a/arch/powerpc/mm/mmu_decl.h b/arch/powerpc/mm/mmu_decl.h index dd0a2589591d..83eb5d5f53d5 100644 --- a/arch/powerpc/mm/mmu_decl.h +++ b/arch/powerpc/mm/mmu_decl.h | |||
@@ -142,6 +142,8 @@ extern unsigned long mmu_mapin_ram(unsigned long top); | |||
142 | 142 | ||
143 | #elif defined(CONFIG_PPC_FSL_BOOK3E) | 143 | #elif defined(CONFIG_PPC_FSL_BOOK3E) |
144 | extern unsigned long map_mem_in_cams(unsigned long ram, int max_cam_idx); | 144 | extern unsigned long map_mem_in_cams(unsigned long ram, int max_cam_idx); |
145 | extern unsigned long calc_cam_sz(unsigned long ram, unsigned long virt, | ||
146 | phys_addr_t phys); | ||
145 | #ifdef CONFIG_PPC32 | 147 | #ifdef CONFIG_PPC32 |
146 | extern void MMU_init_hw(void); | 148 | extern void MMU_init_hw(void); |
147 | extern unsigned long mmu_mapin_ram(unsigned long top); | 149 | extern unsigned long mmu_mapin_ram(unsigned long top); |
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c index 2164006fe170..b22a83a91cb8 100644 --- a/arch/powerpc/mm/numa.c +++ b/arch/powerpc/mm/numa.c | |||
@@ -13,7 +13,7 @@ | |||
13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/mm.h> | 14 | #include <linux/mm.h> |
15 | #include <linux/mmzone.h> | 15 | #include <linux/mmzone.h> |
16 | #include <linux/module.h> | 16 | #include <linux/export.h> |
17 | #include <linux/nodemask.h> | 17 | #include <linux/nodemask.h> |
18 | #include <linux/cpu.h> | 18 | #include <linux/cpu.h> |
19 | #include <linux/notifier.h> | 19 | #include <linux/notifier.h> |
@@ -315,7 +315,10 @@ static int __init find_min_common_depth(void) | |||
315 | struct device_node *root; | 315 | struct device_node *root; |
316 | const char *vec5; | 316 | const char *vec5; |
317 | 317 | ||
318 | root = of_find_node_by_path("/rtas"); | 318 | if (firmware_has_feature(FW_FEATURE_OPAL)) |
319 | root = of_find_node_by_path("/ibm,opal"); | ||
320 | else | ||
321 | root = of_find_node_by_path("/rtas"); | ||
319 | if (!root) | 322 | if (!root) |
320 | root = of_find_node_by_path("/"); | 323 | root = of_find_node_by_path("/"); |
321 | 324 | ||
@@ -344,12 +347,19 @@ static int __init find_min_common_depth(void) | |||
344 | 347 | ||
345 | #define VEC5_AFFINITY_BYTE 5 | 348 | #define VEC5_AFFINITY_BYTE 5 |
346 | #define VEC5_AFFINITY 0x80 | 349 | #define VEC5_AFFINITY 0x80 |
347 | chosen = of_find_node_by_path("/chosen"); | 350 | |
348 | if (chosen) { | 351 | if (firmware_has_feature(FW_FEATURE_OPAL)) |
349 | vec5 = of_get_property(chosen, "ibm,architecture-vec-5", NULL); | 352 | form1_affinity = 1; |
350 | if (vec5 && (vec5[VEC5_AFFINITY_BYTE] & VEC5_AFFINITY)) { | 353 | else { |
351 | dbg("Using form 1 affinity\n"); | 354 | chosen = of_find_node_by_path("/chosen"); |
352 | form1_affinity = 1; | 355 | if (chosen) { |
356 | vec5 = of_get_property(chosen, | ||
357 | "ibm,architecture-vec-5", NULL); | ||
358 | if (vec5 && (vec5[VEC5_AFFINITY_BYTE] & | ||
359 | VEC5_AFFINITY)) { | ||
360 | dbg("Using form 1 affinity\n"); | ||
361 | form1_affinity = 1; | ||
362 | } | ||
353 | } | 363 | } |
354 | } | 364 | } |
355 | 365 | ||
@@ -709,8 +719,7 @@ static void __init parse_drconf_memory(struct device_node *memory) | |||
709 | 719 | ||
710 | static int __init parse_numa_properties(void) | 720 | static int __init parse_numa_properties(void) |
711 | { | 721 | { |
712 | struct device_node *cpu = NULL; | 722 | struct device_node *memory; |
713 | struct device_node *memory = NULL; | ||
714 | int default_nid = 0; | 723 | int default_nid = 0; |
715 | unsigned long i; | 724 | unsigned long i; |
716 | 725 | ||
@@ -732,6 +741,7 @@ static int __init parse_numa_properties(void) | |||
732 | * each node to be onlined must have NODE_DATA etc backing it. | 741 | * each node to be onlined must have NODE_DATA etc backing it. |
733 | */ | 742 | */ |
734 | for_each_present_cpu(i) { | 743 | for_each_present_cpu(i) { |
744 | struct device_node *cpu; | ||
735 | int nid; | 745 | int nid; |
736 | 746 | ||
737 | cpu = of_get_cpu_node(i, NULL); | 747 | cpu = of_get_cpu_node(i, NULL); |
@@ -750,8 +760,8 @@ static int __init parse_numa_properties(void) | |||
750 | } | 760 | } |
751 | 761 | ||
752 | get_n_mem_cells(&n_mem_addr_cells, &n_mem_size_cells); | 762 | get_n_mem_cells(&n_mem_addr_cells, &n_mem_size_cells); |
753 | memory = NULL; | 763 | |
754 | while ((memory = of_find_node_by_type(memory, "memory")) != NULL) { | 764 | for_each_node_by_type(memory, "memory") { |
755 | unsigned long start; | 765 | unsigned long start; |
756 | unsigned long size; | 766 | unsigned long size; |
757 | int nid; | 767 | int nid; |
@@ -800,8 +810,9 @@ new_range: | |||
800 | } | 810 | } |
801 | 811 | ||
802 | /* | 812 | /* |
803 | * Now do the same thing for each MEMBLOCK listed in the ibm,dynamic-memory | 813 | * Now do the same thing for each MEMBLOCK listed in the |
804 | * property in the ibm,dynamic-reconfiguration-memory node. | 814 | * ibm,dynamic-memory property in the |
815 | * ibm,dynamic-reconfiguration-memory node. | ||
805 | */ | 816 | */ |
806 | memory = of_find_node_by_path("/ibm,dynamic-reconfiguration-memory"); | 817 | memory = of_find_node_by_path("/ibm,dynamic-reconfiguration-memory"); |
807 | if (memory) | 818 | if (memory) |
@@ -1187,10 +1198,10 @@ static int hot_add_drconf_scn_to_nid(struct device_node *memory, | |||
1187 | */ | 1198 | */ |
1188 | int hot_add_node_scn_to_nid(unsigned long scn_addr) | 1199 | int hot_add_node_scn_to_nid(unsigned long scn_addr) |
1189 | { | 1200 | { |
1190 | struct device_node *memory = NULL; | 1201 | struct device_node *memory; |
1191 | int nid = -1; | 1202 | int nid = -1; |
1192 | 1203 | ||
1193 | while ((memory = of_find_node_by_type(memory, "memory")) != NULL) { | 1204 | for_each_node_by_type(memory, "memory") { |
1194 | unsigned long start, size; | 1205 | unsigned long start, size; |
1195 | int ranges; | 1206 | int ranges; |
1196 | const unsigned int *memcell_buf; | 1207 | const unsigned int *memcell_buf; |
@@ -1214,11 +1225,12 @@ int hot_add_node_scn_to_nid(unsigned long scn_addr) | |||
1214 | break; | 1225 | break; |
1215 | } | 1226 | } |
1216 | 1227 | ||
1217 | of_node_put(memory); | ||
1218 | if (nid >= 0) | 1228 | if (nid >= 0) |
1219 | break; | 1229 | break; |
1220 | } | 1230 | } |
1221 | 1231 | ||
1232 | of_node_put(memory); | ||
1233 | |||
1222 | return nid; | 1234 | return nid; |
1223 | } | 1235 | } |
1224 | 1236 | ||
diff --git a/arch/powerpc/mm/pgtable.c b/arch/powerpc/mm/pgtable.c index af40c8768a78..214130a4edc6 100644 --- a/arch/powerpc/mm/pgtable.c +++ b/arch/powerpc/mm/pgtable.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/init.h> | 27 | #include <linux/init.h> |
28 | #include <linux/percpu.h> | 28 | #include <linux/percpu.h> |
29 | #include <linux/hardirq.h> | 29 | #include <linux/hardirq.h> |
30 | #include <linux/hugetlb.h> | ||
30 | #include <asm/pgalloc.h> | 31 | #include <asm/pgalloc.h> |
31 | #include <asm/tlbflush.h> | 32 | #include <asm/tlbflush.h> |
32 | #include <asm/tlb.h> | 33 | #include <asm/tlb.h> |
@@ -212,7 +213,7 @@ int ptep_set_access_flags(struct vm_area_struct *vma, unsigned long address, | |||
212 | entry = set_access_flags_filter(entry, vma, dirty); | 213 | entry = set_access_flags_filter(entry, vma, dirty); |
213 | changed = !pte_same(*(ptep), entry); | 214 | changed = !pte_same(*(ptep), entry); |
214 | if (changed) { | 215 | if (changed) { |
215 | if (!(vma->vm_flags & VM_HUGETLB)) | 216 | if (!is_vm_hugetlb_page(vma)) |
216 | assert_pte_locked(vma->vm_mm, address); | 217 | assert_pte_locked(vma->vm_mm, address); |
217 | __ptep_set_access_flags(ptep, entry); | 218 | __ptep_set_access_flags(ptep, entry); |
218 | flush_tlb_page_nohash(vma, address); | 219 | flush_tlb_page_nohash(vma, address); |
diff --git a/arch/powerpc/mm/pgtable_64.c b/arch/powerpc/mm/pgtable_64.c index 6e595f6496d4..ad36ede469cc 100644 --- a/arch/powerpc/mm/pgtable_64.c +++ b/arch/powerpc/mm/pgtable_64.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <linux/kernel.h> | 26 | #include <linux/kernel.h> |
27 | #include <linux/errno.h> | 27 | #include <linux/errno.h> |
28 | #include <linux/string.h> | 28 | #include <linux/string.h> |
29 | #include <linux/export.h> | ||
29 | #include <linux/types.h> | 30 | #include <linux/types.h> |
30 | #include <linux/mman.h> | 31 | #include <linux/mman.h> |
31 | #include <linux/mm.h> | 32 | #include <linux/mm.h> |
diff --git a/arch/powerpc/mm/slice.c b/arch/powerpc/mm/slice.c index ba5194817f8a..73709f7ce92c 100644 --- a/arch/powerpc/mm/slice.c +++ b/arch/powerpc/mm/slice.c | |||
@@ -29,7 +29,7 @@ | |||
29 | #include <linux/pagemap.h> | 29 | #include <linux/pagemap.h> |
30 | #include <linux/err.h> | 30 | #include <linux/err.h> |
31 | #include <linux/spinlock.h> | 31 | #include <linux/spinlock.h> |
32 | #include <linux/module.h> | 32 | #include <linux/export.h> |
33 | #include <asm/mman.h> | 33 | #include <asm/mman.h> |
34 | #include <asm/mmu.h> | 34 | #include <asm/mmu.h> |
35 | #include <asm/spu.h> | 35 | #include <asm/spu.h> |
diff --git a/arch/powerpc/mm/tlb_hash32.c b/arch/powerpc/mm/tlb_hash32.c index 9a445f64accd..558e30cce33e 100644 --- a/arch/powerpc/mm/tlb_hash32.c +++ b/arch/powerpc/mm/tlb_hash32.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/init.h> | 27 | #include <linux/init.h> |
28 | #include <linux/highmem.h> | 28 | #include <linux/highmem.h> |
29 | #include <linux/pagemap.h> | 29 | #include <linux/pagemap.h> |
30 | #include <linux/export.h> | ||
30 | 31 | ||
31 | #include <asm/tlbflush.h> | 32 | #include <asm/tlbflush.h> |
32 | #include <asm/tlb.h> | 33 | #include <asm/tlb.h> |
diff --git a/arch/powerpc/mm/tlb_low_64e.S b/arch/powerpc/mm/tlb_low_64e.S index 4ebb34bc01d6..dc4a5f385e41 100644 --- a/arch/powerpc/mm/tlb_low_64e.S +++ b/arch/powerpc/mm/tlb_low_64e.S | |||
@@ -553,24 +553,24 @@ END_MMU_FTR_SECTION_IFSET(MMU_FTR_USE_TLBRSRV) | |||
553 | rldicl r11,r16,64-VPTE_PGD_SHIFT,64-PGD_INDEX_SIZE-3 | 553 | rldicl r11,r16,64-VPTE_PGD_SHIFT,64-PGD_INDEX_SIZE-3 |
554 | clrrdi r10,r11,3 | 554 | clrrdi r10,r11,3 |
555 | ldx r15,r10,r15 | 555 | ldx r15,r10,r15 |
556 | cmpldi cr0,r15,0 | 556 | cmpdi cr0,r15,0 |
557 | beq virt_page_table_tlb_miss_fault | 557 | bge virt_page_table_tlb_miss_fault |
558 | 558 | ||
559 | #ifndef CONFIG_PPC_64K_PAGES | 559 | #ifndef CONFIG_PPC_64K_PAGES |
560 | /* Get to PUD entry */ | 560 | /* Get to PUD entry */ |
561 | rldicl r11,r16,64-VPTE_PUD_SHIFT,64-PUD_INDEX_SIZE-3 | 561 | rldicl r11,r16,64-VPTE_PUD_SHIFT,64-PUD_INDEX_SIZE-3 |
562 | clrrdi r10,r11,3 | 562 | clrrdi r10,r11,3 |
563 | ldx r15,r10,r15 | 563 | ldx r15,r10,r15 |
564 | cmpldi cr0,r15,0 | 564 | cmpdi cr0,r15,0 |
565 | beq virt_page_table_tlb_miss_fault | 565 | bge virt_page_table_tlb_miss_fault |
566 | #endif /* CONFIG_PPC_64K_PAGES */ | 566 | #endif /* CONFIG_PPC_64K_PAGES */ |
567 | 567 | ||
568 | /* Get to PMD entry */ | 568 | /* Get to PMD entry */ |
569 | rldicl r11,r16,64-VPTE_PMD_SHIFT,64-PMD_INDEX_SIZE-3 | 569 | rldicl r11,r16,64-VPTE_PMD_SHIFT,64-PMD_INDEX_SIZE-3 |
570 | clrrdi r10,r11,3 | 570 | clrrdi r10,r11,3 |
571 | ldx r15,r10,r15 | 571 | ldx r15,r10,r15 |
572 | cmpldi cr0,r15,0 | 572 | cmpdi cr0,r15,0 |
573 | beq virt_page_table_tlb_miss_fault | 573 | bge virt_page_table_tlb_miss_fault |
574 | 574 | ||
575 | /* Ok, we're all right, we can now create a kernel translation for | 575 | /* Ok, we're all right, we can now create a kernel translation for |
576 | * a 4K or 64K page from r16 -> r15. | 576 | * a 4K or 64K page from r16 -> r15. |
@@ -802,24 +802,24 @@ htw_tlb_miss: | |||
802 | rldicl r11,r16,64-(PGDIR_SHIFT-3),64-PGD_INDEX_SIZE-3 | 802 | rldicl r11,r16,64-(PGDIR_SHIFT-3),64-PGD_INDEX_SIZE-3 |
803 | clrrdi r10,r11,3 | 803 | clrrdi r10,r11,3 |
804 | ldx r15,r10,r15 | 804 | ldx r15,r10,r15 |
805 | cmpldi cr0,r15,0 | 805 | cmpdi cr0,r15,0 |
806 | beq htw_tlb_miss_fault | 806 | bge htw_tlb_miss_fault |
807 | 807 | ||
808 | #ifndef CONFIG_PPC_64K_PAGES | 808 | #ifndef CONFIG_PPC_64K_PAGES |
809 | /* Get to PUD entry */ | 809 | /* Get to PUD entry */ |
810 | rldicl r11,r16,64-(PUD_SHIFT-3),64-PUD_INDEX_SIZE-3 | 810 | rldicl r11,r16,64-(PUD_SHIFT-3),64-PUD_INDEX_SIZE-3 |
811 | clrrdi r10,r11,3 | 811 | clrrdi r10,r11,3 |
812 | ldx r15,r10,r15 | 812 | ldx r15,r10,r15 |
813 | cmpldi cr0,r15,0 | 813 | cmpdi cr0,r15,0 |
814 | beq htw_tlb_miss_fault | 814 | bge htw_tlb_miss_fault |
815 | #endif /* CONFIG_PPC_64K_PAGES */ | 815 | #endif /* CONFIG_PPC_64K_PAGES */ |
816 | 816 | ||
817 | /* Get to PMD entry */ | 817 | /* Get to PMD entry */ |
818 | rldicl r11,r16,64-(PMD_SHIFT-3),64-PMD_INDEX_SIZE-3 | 818 | rldicl r11,r16,64-(PMD_SHIFT-3),64-PMD_INDEX_SIZE-3 |
819 | clrrdi r10,r11,3 | 819 | clrrdi r10,r11,3 |
820 | ldx r15,r10,r15 | 820 | ldx r15,r10,r15 |
821 | cmpldi cr0,r15,0 | 821 | cmpdi cr0,r15,0 |
822 | beq htw_tlb_miss_fault | 822 | bge htw_tlb_miss_fault |
823 | 823 | ||
824 | /* Ok, we're all right, we can now create an indirect entry for | 824 | /* Ok, we're all right, we can now create an indirect entry for |
825 | * a 1M or 256M page. | 825 | * a 1M or 256M page. |
diff --git a/arch/powerpc/mm/tlb_nohash.c b/arch/powerpc/mm/tlb_nohash.c index d32ec643c231..4e13d6f9023e 100644 --- a/arch/powerpc/mm/tlb_nohash.c +++ b/arch/powerpc/mm/tlb_nohash.c | |||
@@ -28,6 +28,7 @@ | |||
28 | */ | 28 | */ |
29 | 29 | ||
30 | #include <linux/kernel.h> | 30 | #include <linux/kernel.h> |
31 | #include <linux/export.h> | ||
31 | #include <linux/mm.h> | 32 | #include <linux/mm.h> |
32 | #include <linux/init.h> | 33 | #include <linux/init.h> |
33 | #include <linux/highmem.h> | 34 | #include <linux/highmem.h> |
@@ -36,14 +37,49 @@ | |||
36 | #include <linux/spinlock.h> | 37 | #include <linux/spinlock.h> |
37 | #include <linux/memblock.h> | 38 | #include <linux/memblock.h> |
38 | #include <linux/of_fdt.h> | 39 | #include <linux/of_fdt.h> |
40 | #include <linux/hugetlb.h> | ||
39 | 41 | ||
40 | #include <asm/tlbflush.h> | 42 | #include <asm/tlbflush.h> |
41 | #include <asm/tlb.h> | 43 | #include <asm/tlb.h> |
42 | #include <asm/code-patching.h> | 44 | #include <asm/code-patching.h> |
45 | #include <asm/hugetlb.h> | ||
43 | 46 | ||
44 | #include "mmu_decl.h" | 47 | #include "mmu_decl.h" |
45 | 48 | ||
46 | #ifdef CONFIG_PPC_BOOK3E | 49 | /* |
50 | * This struct lists the sw-supported page sizes. The hardawre MMU may support | ||
51 | * other sizes not listed here. The .ind field is only used on MMUs that have | ||
52 | * indirect page table entries. | ||
53 | */ | ||
54 | #ifdef CONFIG_PPC_BOOK3E_MMU | ||
55 | #ifdef CONFIG_FSL_BOOKE | ||
56 | struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT] = { | ||
57 | [MMU_PAGE_4K] = { | ||
58 | .shift = 12, | ||
59 | .enc = BOOK3E_PAGESZ_4K, | ||
60 | }, | ||
61 | [MMU_PAGE_4M] = { | ||
62 | .shift = 22, | ||
63 | .enc = BOOK3E_PAGESZ_4M, | ||
64 | }, | ||
65 | [MMU_PAGE_16M] = { | ||
66 | .shift = 24, | ||
67 | .enc = BOOK3E_PAGESZ_16M, | ||
68 | }, | ||
69 | [MMU_PAGE_64M] = { | ||
70 | .shift = 26, | ||
71 | .enc = BOOK3E_PAGESZ_64M, | ||
72 | }, | ||
73 | [MMU_PAGE_256M] = { | ||
74 | .shift = 28, | ||
75 | .enc = BOOK3E_PAGESZ_256M, | ||
76 | }, | ||
77 | [MMU_PAGE_1G] = { | ||
78 | .shift = 30, | ||
79 | .enc = BOOK3E_PAGESZ_1GB, | ||
80 | }, | ||
81 | }; | ||
82 | #else | ||
47 | struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT] = { | 83 | struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT] = { |
48 | [MMU_PAGE_4K] = { | 84 | [MMU_PAGE_4K] = { |
49 | .shift = 12, | 85 | .shift = 12, |
@@ -77,6 +113,8 @@ struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT] = { | |||
77 | .enc = BOOK3E_PAGESZ_1GB, | 113 | .enc = BOOK3E_PAGESZ_1GB, |
78 | }, | 114 | }, |
79 | }; | 115 | }; |
116 | #endif /* CONFIG_FSL_BOOKE */ | ||
117 | |||
80 | static inline int mmu_get_tsize(int psize) | 118 | static inline int mmu_get_tsize(int psize) |
81 | { | 119 | { |
82 | return mmu_psize_defs[psize].enc; | 120 | return mmu_psize_defs[psize].enc; |
@@ -87,7 +125,7 @@ static inline int mmu_get_tsize(int psize) | |||
87 | /* This isn't used on !Book3E for now */ | 125 | /* This isn't used on !Book3E for now */ |
88 | return 0; | 126 | return 0; |
89 | } | 127 | } |
90 | #endif | 128 | #endif /* CONFIG_PPC_BOOK3E_MMU */ |
91 | 129 | ||
92 | /* The variables below are currently only used on 64-bit Book3E | 130 | /* The variables below are currently only used on 64-bit Book3E |
93 | * though this will probably be made common with other nohash | 131 | * though this will probably be made common with other nohash |
@@ -266,6 +304,11 @@ void __flush_tlb_page(struct mm_struct *mm, unsigned long vmaddr, | |||
266 | 304 | ||
267 | void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr) | 305 | void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr) |
268 | { | 306 | { |
307 | #ifdef CONFIG_HUGETLB_PAGE | ||
308 | if (is_vm_hugetlb_page(vma)) | ||
309 | flush_hugetlb_page(vma, vmaddr); | ||
310 | #endif | ||
311 | |||
269 | __flush_tlb_page(vma ? vma->vm_mm : NULL, vmaddr, | 312 | __flush_tlb_page(vma ? vma->vm_mm : NULL, vmaddr, |
270 | mmu_get_tsize(mmu_virtual_psize), 0); | 313 | mmu_get_tsize(mmu_virtual_psize), 0); |
271 | } | 314 | } |
@@ -600,13 +643,28 @@ void __cpuinit early_init_mmu_secondary(void) | |||
600 | void setup_initial_memory_limit(phys_addr_t first_memblock_base, | 643 | void setup_initial_memory_limit(phys_addr_t first_memblock_base, |
601 | phys_addr_t first_memblock_size) | 644 | phys_addr_t first_memblock_size) |
602 | { | 645 | { |
603 | /* On Embedded 64-bit, we adjust the RMA size to match | 646 | /* On non-FSL Embedded 64-bit, we adjust the RMA size to match |
604 | * the bolted TLB entry. We know for now that only 1G | 647 | * the bolted TLB entry. We know for now that only 1G |
605 | * entries are supported though that may eventually | 648 | * entries are supported though that may eventually |
606 | * change. We crop it to the size of the first MEMBLOCK to | 649 | * change. |
650 | * | ||
651 | * on FSL Embedded 64-bit, we adjust the RMA size to match the | ||
652 | * first bolted TLB entry size. We still limit max to 1G even if | ||
653 | * the TLB could cover more. This is due to what the early init | ||
654 | * code is setup to do. | ||
655 | * | ||
656 | * We crop it to the size of the first MEMBLOCK to | ||
607 | * avoid going over total available memory just in case... | 657 | * avoid going over total available memory just in case... |
608 | */ | 658 | */ |
609 | ppc64_rma_size = min_t(u64, first_memblock_size, 0x40000000); | 659 | #ifdef CONFIG_PPC_FSL_BOOK3E |
660 | if (mmu_has_feature(MMU_FTR_TYPE_FSL_E)) { | ||
661 | unsigned long linear_sz; | ||
662 | linear_sz = calc_cam_sz(first_memblock_size, PAGE_OFFSET, | ||
663 | first_memblock_base); | ||
664 | ppc64_rma_size = min_t(u64, linear_sz, 0x40000000); | ||
665 | } else | ||
666 | #endif | ||
667 | ppc64_rma_size = min_t(u64, first_memblock_size, 0x40000000); | ||
610 | 668 | ||
611 | /* Finally limit subsequent allocations */ | 669 | /* Finally limit subsequent allocations */ |
612 | memblock_set_current_limit(first_memblock_base + ppc64_rma_size); | 670 | memblock_set_current_limit(first_memblock_base + ppc64_rma_size); |
diff --git a/arch/powerpc/platforms/40x/Kconfig b/arch/powerpc/platforms/40x/Kconfig index e568e85813ae..bd69cf8d8222 100644 --- a/arch/powerpc/platforms/40x/Kconfig +++ b/arch/powerpc/platforms/40x/Kconfig | |||
@@ -16,14 +16,6 @@ config EP405 | |||
16 | help | 16 | help |
17 | This option enables support for the EP405/EP405PC boards. | 17 | This option enables support for the EP405/EP405PC boards. |
18 | 18 | ||
19 | config HCU4 | ||
20 | bool "Hcu4" | ||
21 | depends on 40x | ||
22 | default n | ||
23 | select 405GPR | ||
24 | help | ||
25 | This option enables support for the Nestal Maschinen HCU4 board. | ||
26 | |||
27 | config HOTFOOT | 19 | config HOTFOOT |
28 | bool "Hotfoot" | 20 | bool "Hotfoot" |
29 | depends on 40x | 21 | depends on 40x |
@@ -91,11 +83,6 @@ config PPC40x_SIMPLE | |||
91 | help | 83 | help |
92 | This option enables the simple PowerPC 40x platform support. | 84 | This option enables the simple PowerPC 40x platform support. |
93 | 85 | ||
94 | # 40x specific CPU modules, selected based on the board above. | ||
95 | config NP405H | ||
96 | bool | ||
97 | #depends on ASH | ||
98 | |||
99 | # OAK doesn't exist but wanted to keep this around for any future 403GCX boards | 86 | # OAK doesn't exist but wanted to keep this around for any future 403GCX boards |
100 | config 403GCX | 87 | config 403GCX |
101 | bool | 88 | bool |
@@ -106,21 +93,21 @@ config 405GP | |||
106 | bool | 93 | bool |
107 | select IBM405_ERR77 | 94 | select IBM405_ERR77 |
108 | select IBM405_ERR51 | 95 | select IBM405_ERR51 |
109 | select IBM_NEW_EMAC_ZMII | 96 | select IBM_EMAC_ZMII |
110 | 97 | ||
111 | config 405EP | 98 | config 405EP |
112 | bool | 99 | bool |
113 | 100 | ||
114 | config 405EX | 101 | config 405EX |
115 | bool | 102 | bool |
116 | select IBM_NEW_EMAC_EMAC4 | 103 | select IBM_EMAC_EMAC4 |
117 | select IBM_NEW_EMAC_RGMII | 104 | select IBM_EMAC_RGMII |
118 | 105 | ||
119 | config 405EZ | 106 | config 405EZ |
120 | bool | 107 | bool |
121 | select IBM_NEW_EMAC_NO_FLOW_CTRL | 108 | select IBM_EMAC_NO_FLOW_CTRL |
122 | select IBM_NEW_EMAC_MAL_CLR_ICINTSTAT | 109 | select IBM_EMAC_MAL_CLR_ICINTSTAT |
123 | select IBM_NEW_EMAC_MAL_COMMON_ERR | 110 | select IBM_EMAC_MAL_COMMON_ERR |
124 | 111 | ||
125 | config 405GPR | 112 | config 405GPR |
126 | bool | 113 | bool |
diff --git a/arch/powerpc/platforms/40x/Makefile b/arch/powerpc/platforms/40x/Makefile index 56e89004c468..88c22de0c850 100644 --- a/arch/powerpc/platforms/40x/Makefile +++ b/arch/powerpc/platforms/40x/Makefile | |||
@@ -1,4 +1,3 @@ | |||
1 | obj-$(CONFIG_HCU4) += hcu4.o | ||
2 | obj-$(CONFIG_WALNUT) += walnut.o | 1 | obj-$(CONFIG_WALNUT) += walnut.o |
3 | obj-$(CONFIG_XILINX_VIRTEX_GENERIC_BOARD) += virtex.o | 2 | obj-$(CONFIG_XILINX_VIRTEX_GENERIC_BOARD) += virtex.o |
4 | obj-$(CONFIG_EP405) += ep405.o | 3 | obj-$(CONFIG_EP405) += ep405.o |
diff --git a/arch/powerpc/platforms/40x/hcu4.c b/arch/powerpc/platforms/40x/hcu4.c deleted file mode 100644 index 60b2afecab75..000000000000 --- a/arch/powerpc/platforms/40x/hcu4.c +++ /dev/null | |||
@@ -1,61 +0,0 @@ | |||
1 | /* | ||
2 | * Architecture- / platform-specific boot-time initialization code for | ||
3 | * IBM PowerPC 4xx based boards. Adapted from original | ||
4 | * code by Gary Thomas, Cort Dougan <cort@fsmlabs.com>, and Dan Malek | ||
5 | * <dan@net4x.com>. | ||
6 | * | ||
7 | * Copyright(c) 1999-2000 Grant Erickson <grant@lcse.umn.edu> | ||
8 | * | ||
9 | * Rewritten and ported to the merged powerpc tree: | ||
10 | * Copyright 2007 IBM Corporation | ||
11 | * Josh Boyer <jwboyer@linux.vnet.ibm.com> | ||
12 | * | ||
13 | * 2002 (c) MontaVista, Software, Inc. This file is licensed under | ||
14 | * the terms of the GNU General Public License version 2. This program | ||
15 | * is licensed "as is" without any warranty of any kind, whether express | ||
16 | * or implied. | ||
17 | */ | ||
18 | |||
19 | #include <linux/init.h> | ||
20 | #include <linux/of_platform.h> | ||
21 | |||
22 | #include <asm/machdep.h> | ||
23 | #include <asm/prom.h> | ||
24 | #include <asm/udbg.h> | ||
25 | #include <asm/time.h> | ||
26 | #include <asm/uic.h> | ||
27 | #include <asm/ppc4xx.h> | ||
28 | |||
29 | static __initdata struct of_device_id hcu4_of_bus[] = { | ||
30 | { .compatible = "ibm,plb3", }, | ||
31 | { .compatible = "ibm,opb", }, | ||
32 | { .compatible = "ibm,ebc", }, | ||
33 | {}, | ||
34 | }; | ||
35 | |||
36 | static int __init hcu4_device_probe(void) | ||
37 | { | ||
38 | of_platform_bus_probe(NULL, hcu4_of_bus, NULL); | ||
39 | return 0; | ||
40 | } | ||
41 | machine_device_initcall(hcu4, hcu4_device_probe); | ||
42 | |||
43 | static int __init hcu4_probe(void) | ||
44 | { | ||
45 | unsigned long root = of_get_flat_dt_root(); | ||
46 | |||
47 | if (!of_flat_dt_is_compatible(root, "netstal,hcu4")) | ||
48 | return 0; | ||
49 | |||
50 | return 1; | ||
51 | } | ||
52 | |||
53 | define_machine(hcu4) { | ||
54 | .name = "HCU4", | ||
55 | .probe = hcu4_probe, | ||
56 | .progress = udbg_progress, | ||
57 | .init_IRQ = uic_init_tree, | ||
58 | .get_irq = uic_get_irq, | ||
59 | .restart = ppc4xx_reset_system, | ||
60 | .calibrate_decr = generic_calibrate_decr, | ||
61 | }; | ||
diff --git a/arch/powerpc/platforms/44x/Kconfig b/arch/powerpc/platforms/44x/Kconfig index 2c1a3e694114..0cb8899a5cc1 100644 --- a/arch/powerpc/platforms/44x/Kconfig +++ b/arch/powerpc/platforms/44x/Kconfig | |||
@@ -23,7 +23,7 @@ config BLUESTONE | |||
23 | default n | 23 | default n |
24 | select PPC44x_SIMPLE | 24 | select PPC44x_SIMPLE |
25 | select APM821xx | 25 | select APM821xx |
26 | select IBM_NEW_EMAC_RGMII | 26 | select IBM_EMAC_RGMII |
27 | help | 27 | help |
28 | This option enables support for the APM APM821xx Evaluation board. | 28 | This option enables support for the APM APM821xx Evaluation board. |
29 | 29 | ||
@@ -122,8 +122,8 @@ config CANYONLANDS | |||
122 | select PPC4xx_PCI_EXPRESS | 122 | select PPC4xx_PCI_EXPRESS |
123 | select PCI_MSI | 123 | select PCI_MSI |
124 | select PPC4xx_MSI | 124 | select PPC4xx_MSI |
125 | select IBM_NEW_EMAC_RGMII | 125 | select IBM_EMAC_RGMII |
126 | select IBM_NEW_EMAC_ZMII | 126 | select IBM_EMAC_ZMII |
127 | help | 127 | help |
128 | This option enables support for the AMCC PPC460EX evaluation board. | 128 | This option enables support for the AMCC PPC460EX evaluation board. |
129 | 129 | ||
@@ -135,8 +135,8 @@ config GLACIER | |||
135 | select 460EX # Odd since it uses 460GT but the effects are the same | 135 | select 460EX # Odd since it uses 460GT but the effects are the same |
136 | select PCI | 136 | select PCI |
137 | select PPC4xx_PCI_EXPRESS | 137 | select PPC4xx_PCI_EXPRESS |
138 | select IBM_NEW_EMAC_RGMII | 138 | select IBM_EMAC_RGMII |
139 | select IBM_NEW_EMAC_ZMII | 139 | select IBM_EMAC_ZMII |
140 | help | 140 | help |
141 | This option enables support for the AMCC PPC460GT evaluation board. | 141 | This option enables support for the AMCC PPC460GT evaluation board. |
142 | 142 | ||
@@ -161,7 +161,7 @@ config EIGER | |||
161 | select 460SX | 161 | select 460SX |
162 | select PCI | 162 | select PCI |
163 | select PPC4xx_PCI_EXPRESS | 163 | select PPC4xx_PCI_EXPRESS |
164 | select IBM_NEW_EMAC_RGMII | 164 | select IBM_EMAC_RGMII |
165 | help | 165 | help |
166 | This option enables support for the AMCC PPC460SX evaluation board. | 166 | This option enables support for the AMCC PPC460SX evaluation board. |
167 | 167 | ||
@@ -244,59 +244,59 @@ config 440EP | |||
244 | bool | 244 | bool |
245 | select PPC_FPU | 245 | select PPC_FPU |
246 | select IBM440EP_ERR42 | 246 | select IBM440EP_ERR42 |
247 | select IBM_NEW_EMAC_ZMII | 247 | select IBM_EMAC_ZMII |
248 | select USB_ARCH_HAS_OHCI | 248 | select USB_ARCH_HAS_OHCI |
249 | 249 | ||
250 | config 440EPX | 250 | config 440EPX |
251 | bool | 251 | bool |
252 | select PPC_FPU | 252 | select PPC_FPU |
253 | select IBM_NEW_EMAC_EMAC4 | 253 | select IBM_EMAC_EMAC4 |
254 | select IBM_NEW_EMAC_RGMII | 254 | select IBM_EMAC_RGMII |
255 | select IBM_NEW_EMAC_ZMII | 255 | select IBM_EMAC_ZMII |
256 | 256 | ||
257 | config 440GRX | 257 | config 440GRX |
258 | bool | 258 | bool |
259 | select IBM_NEW_EMAC_EMAC4 | 259 | select IBM_EMAC_EMAC4 |
260 | select IBM_NEW_EMAC_RGMII | 260 | select IBM_EMAC_RGMII |
261 | select IBM_NEW_EMAC_ZMII | 261 | select IBM_EMAC_ZMII |
262 | 262 | ||
263 | config 440GP | 263 | config 440GP |
264 | bool | 264 | bool |
265 | select IBM_NEW_EMAC_ZMII | 265 | select IBM_EMAC_ZMII |
266 | 266 | ||
267 | config 440GX | 267 | config 440GX |
268 | bool | 268 | bool |
269 | select IBM_NEW_EMAC_EMAC4 | 269 | select IBM_EMAC_EMAC4 |
270 | select IBM_NEW_EMAC_RGMII | 270 | select IBM_EMAC_RGMII |
271 | select IBM_NEW_EMAC_ZMII #test only | 271 | select IBM_EMAC_ZMII #test only |
272 | select IBM_NEW_EMAC_TAH #test only | 272 | select IBM_EMAC_TAH #test only |
273 | 273 | ||
274 | config 440SP | 274 | config 440SP |
275 | bool | 275 | bool |
276 | 276 | ||
277 | config 440SPe | 277 | config 440SPe |
278 | bool | 278 | bool |
279 | select IBM_NEW_EMAC_EMAC4 | 279 | select IBM_EMAC_EMAC4 |
280 | 280 | ||
281 | config 460EX | 281 | config 460EX |
282 | bool | 282 | bool |
283 | select PPC_FPU | 283 | select PPC_FPU |
284 | select IBM_NEW_EMAC_EMAC4 | 284 | select IBM_EMAC_EMAC4 |
285 | select IBM_NEW_EMAC_TAH | 285 | select IBM_EMAC_TAH |
286 | 286 | ||
287 | config 460SX | 287 | config 460SX |
288 | bool | 288 | bool |
289 | select PPC_FPU | 289 | select PPC_FPU |
290 | select IBM_NEW_EMAC_EMAC4 | 290 | select IBM_EMAC_EMAC4 |
291 | select IBM_NEW_EMAC_RGMII | 291 | select IBM_EMAC_RGMII |
292 | select IBM_NEW_EMAC_ZMII | 292 | select IBM_EMAC_ZMII |
293 | select IBM_NEW_EMAC_TAH | 293 | select IBM_EMAC_TAH |
294 | 294 | ||
295 | config APM821xx | 295 | config APM821xx |
296 | bool | 296 | bool |
297 | select PPC_FPU | 297 | select PPC_FPU |
298 | select IBM_NEW_EMAC_EMAC4 | 298 | select IBM_EMAC_EMAC4 |
299 | select IBM_NEW_EMAC_TAH | 299 | select IBM_EMAC_TAH |
300 | 300 | ||
301 | # 44x errata/workaround config symbols, selected by the CPU models above | 301 | # 44x errata/workaround config symbols, selected by the CPU models above |
302 | config IBM440EP_ERR42 | 302 | config IBM440EP_ERR42 |
diff --git a/arch/powerpc/platforms/44x/warp.c b/arch/powerpc/platforms/44x/warp.c index 8f771395f424..4cfa49901c02 100644 --- a/arch/powerpc/platforms/44x/warp.c +++ b/arch/powerpc/platforms/44x/warp.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/of_gpio.h> | 18 | #include <linux/of_gpio.h> |
19 | #include <linux/of_i2c.h> | 19 | #include <linux/of_i2c.h> |
20 | #include <linux/slab.h> | 20 | #include <linux/slab.h> |
21 | #include <linux/export.h> | ||
21 | 22 | ||
22 | #include <asm/machdep.h> | 23 | #include <asm/machdep.h> |
23 | #include <asm/prom.h> | 24 | #include <asm/prom.h> |
diff --git a/arch/powerpc/platforms/512x/Kconfig b/arch/powerpc/platforms/512x/Kconfig index 27b0651221d1..b3ebce1aec07 100644 --- a/arch/powerpc/platforms/512x/Kconfig +++ b/arch/powerpc/platforms/512x/Kconfig | |||
@@ -6,6 +6,7 @@ config PPC_MPC512x | |||
6 | select PPC_CLOCK | 6 | select PPC_CLOCK |
7 | select PPC_PCI_CHOICE | 7 | select PPC_PCI_CHOICE |
8 | select FSL_PCI if PCI | 8 | select FSL_PCI if PCI |
9 | select ARCH_WANT_OPTIONAL_GPIOLIB | ||
9 | 10 | ||
10 | config MPC5121_ADS | 11 | config MPC5121_ADS |
11 | bool "Freescale MPC5121E ADS" | 12 | bool "Freescale MPC5121E ADS" |
diff --git a/arch/powerpc/platforms/512x/clock.c b/arch/powerpc/platforms/512x/clock.c index 3dc2a8d262b8..1d8700ff60b0 100644 --- a/arch/powerpc/platforms/512x/clock.c +++ b/arch/powerpc/platforms/512x/clock.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/list.h> | 18 | #include <linux/list.h> |
19 | #include <linux/errno.h> | 19 | #include <linux/errno.h> |
20 | #include <linux/err.h> | 20 | #include <linux/err.h> |
21 | #include <linux/module.h> | ||
21 | #include <linux/string.h> | 22 | #include <linux/string.h> |
22 | #include <linux/clk.h> | 23 | #include <linux/clk.h> |
23 | #include <linux/mutex.h> | 24 | #include <linux/mutex.h> |
diff --git a/arch/powerpc/platforms/512x/mpc512x_shared.c b/arch/powerpc/platforms/512x/mpc512x_shared.c index e41ebbdb3e12..cfe958e94e1e 100644 --- a/arch/powerpc/platforms/512x/mpc512x_shared.c +++ b/arch/powerpc/platforms/512x/mpc512x_shared.c | |||
@@ -66,8 +66,8 @@ struct fsl_diu_shared_fb { | |||
66 | bool in_use; | 66 | bool in_use; |
67 | }; | 67 | }; |
68 | 68 | ||
69 | unsigned int mpc512x_get_pixel_format(unsigned int bits_per_pixel, | 69 | u32 mpc512x_get_pixel_format(enum fsl_diu_monitor_port port, |
70 | int monitor_port) | 70 | unsigned int bits_per_pixel) |
71 | { | 71 | { |
72 | switch (bits_per_pixel) { | 72 | switch (bits_per_pixel) { |
73 | case 32: | 73 | case 32: |
@@ -80,11 +80,12 @@ unsigned int mpc512x_get_pixel_format(unsigned int bits_per_pixel, | |||
80 | return 0x00000400; | 80 | return 0x00000400; |
81 | } | 81 | } |
82 | 82 | ||
83 | void mpc512x_set_gamma_table(int monitor_port, char *gamma_table_base) | 83 | void mpc512x_set_gamma_table(enum fsl_diu_monitor_port port, |
84 | char *gamma_table_base) | ||
84 | { | 85 | { |
85 | } | 86 | } |
86 | 87 | ||
87 | void mpc512x_set_monitor_port(int monitor_port) | 88 | void mpc512x_set_monitor_port(enum fsl_diu_monitor_port port) |
88 | { | 89 | { |
89 | } | 90 | } |
90 | 91 | ||
@@ -182,14 +183,10 @@ void mpc512x_set_pixel_clock(unsigned int pixclock) | |||
182 | iounmap(ccm); | 183 | iounmap(ccm); |
183 | } | 184 | } |
184 | 185 | ||
185 | ssize_t mpc512x_show_monitor_port(int monitor_port, char *buf) | 186 | enum fsl_diu_monitor_port |
187 | mpc512x_valid_monitor_port(enum fsl_diu_monitor_port port) | ||
186 | { | 188 | { |
187 | return sprintf(buf, "0 - 5121 LCD\n"); | 189 | return FSL_DIU_PORT_DVI; |
188 | } | ||
189 | |||
190 | int mpc512x_set_sysfs_monitor_port(int val) | ||
191 | { | ||
192 | return 0; | ||
193 | } | 190 | } |
194 | 191 | ||
195 | static struct fsl_diu_shared_fb __attribute__ ((__aligned__(8))) diu_shared_fb; | 192 | static struct fsl_diu_shared_fb __attribute__ ((__aligned__(8))) diu_shared_fb; |
@@ -256,7 +253,7 @@ void __init mpc512x_init_diu(void) | |||
256 | } | 253 | } |
257 | 254 | ||
258 | mode = in_be32(&diu_reg->diu_mode); | 255 | mode = in_be32(&diu_reg->diu_mode); |
259 | if (mode != MFB_MODE1) { | 256 | if (mode == MFB_MODE0) { |
260 | pr_info("%s: DIU OFF\n", __func__); | 257 | pr_info("%s: DIU OFF\n", __func__); |
261 | goto out; | 258 | goto out; |
262 | } | 259 | } |
@@ -332,8 +329,7 @@ void __init mpc512x_setup_diu(void) | |||
332 | diu_ops.set_gamma_table = mpc512x_set_gamma_table; | 329 | diu_ops.set_gamma_table = mpc512x_set_gamma_table; |
333 | diu_ops.set_monitor_port = mpc512x_set_monitor_port; | 330 | diu_ops.set_monitor_port = mpc512x_set_monitor_port; |
334 | diu_ops.set_pixel_clock = mpc512x_set_pixel_clock; | 331 | diu_ops.set_pixel_clock = mpc512x_set_pixel_clock; |
335 | diu_ops.show_monitor_port = mpc512x_show_monitor_port; | 332 | diu_ops.valid_monitor_port = mpc512x_valid_monitor_port; |
336 | diu_ops.set_sysfs_monitor_port = mpc512x_set_sysfs_monitor_port; | ||
337 | diu_ops.release_bootmem = mpc512x_release_bootmem; | 333 | diu_ops.release_bootmem = mpc512x_release_bootmem; |
338 | #endif | 334 | #endif |
339 | } | 335 | } |
diff --git a/arch/powerpc/platforms/52xx/mpc5200_simple.c b/arch/powerpc/platforms/52xx/mpc5200_simple.c index e36d6e232ae6..846b789fb195 100644 --- a/arch/powerpc/platforms/52xx/mpc5200_simple.c +++ b/arch/powerpc/platforms/52xx/mpc5200_simple.c | |||
@@ -50,6 +50,7 @@ static void __init mpc5200_simple_setup_arch(void) | |||
50 | 50 | ||
51 | /* list of the supported boards */ | 51 | /* list of the supported boards */ |
52 | static const char *board[] __initdata = { | 52 | static const char *board[] __initdata = { |
53 | "anon,charon", | ||
53 | "intercontrol,digsy-mtc", | 54 | "intercontrol,digsy-mtc", |
54 | "manroland,mucmc52", | 55 | "manroland,mucmc52", |
55 | "manroland,uc101", | 56 | "manroland,uc101", |
diff --git a/arch/powerpc/platforms/52xx/mpc52xx_common.c b/arch/powerpc/platforms/52xx/mpc52xx_common.c index 41f3a7eda1de..369fd5457a3f 100644 --- a/arch/powerpc/platforms/52xx/mpc52xx_common.c +++ b/arch/powerpc/platforms/52xx/mpc52xx_common.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/spinlock.h> | 17 | #include <linux/spinlock.h> |
18 | #include <linux/of_platform.h> | 18 | #include <linux/of_platform.h> |
19 | #include <linux/of_gpio.h> | 19 | #include <linux/of_gpio.h> |
20 | #include <linux/export.h> | ||
20 | #include <asm/io.h> | 21 | #include <asm/io.h> |
21 | #include <asm/prom.h> | 22 | #include <asm/prom.h> |
22 | #include <asm/mpc52xx.h> | 23 | #include <asm/mpc52xx.h> |
diff --git a/arch/powerpc/platforms/52xx/mpc52xx_gpt.c b/arch/powerpc/platforms/52xx/mpc52xx_gpt.c index 6c39b9cc2fa3..f94f06e52762 100644 --- a/arch/powerpc/platforms/52xx/mpc52xx_gpt.c +++ b/arch/powerpc/platforms/52xx/mpc52xx_gpt.c | |||
@@ -67,6 +67,7 @@ | |||
67 | #include <linux/watchdog.h> | 67 | #include <linux/watchdog.h> |
68 | #include <linux/miscdevice.h> | 68 | #include <linux/miscdevice.h> |
69 | #include <linux/uaccess.h> | 69 | #include <linux/uaccess.h> |
70 | #include <linux/module.h> | ||
70 | #include <asm/div64.h> | 71 | #include <asm/div64.h> |
71 | #include <asm/mpc52xx.h> | 72 | #include <asm/mpc52xx.h> |
72 | 73 | ||
diff --git a/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c b/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c index 9940ce8a2d4e..d61fb1c0c1a0 100644 --- a/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c +++ b/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/of.h> | 14 | #include <linux/of.h> |
15 | #include <linux/of_platform.h> | 15 | #include <linux/of_platform.h> |
16 | #include <linux/spinlock.h> | 16 | #include <linux/spinlock.h> |
17 | #include <linux/module.h> | ||
17 | #include <asm/io.h> | 18 | #include <asm/io.h> |
18 | #include <asm/prom.h> | 19 | #include <asm/prom.h> |
19 | #include <asm/mpc52xx.h> | 20 | #include <asm/mpc52xx.h> |
diff --git a/arch/powerpc/platforms/82xx/km82xx.c b/arch/powerpc/platforms/82xx/km82xx.c index 428c5e0a0e75..3661bcdc326a 100644 --- a/arch/powerpc/platforms/82xx/km82xx.c +++ b/arch/powerpc/platforms/82xx/km82xx.c | |||
@@ -49,6 +49,9 @@ struct cpm_pin { | |||
49 | }; | 49 | }; |
50 | 50 | ||
51 | static __initdata struct cpm_pin km82xx_pins[] = { | 51 | static __initdata struct cpm_pin km82xx_pins[] = { |
52 | /* SMC1 */ | ||
53 | {2, 4, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
54 | {2, 5, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
52 | 55 | ||
53 | /* SMC2 */ | 56 | /* SMC2 */ |
54 | {0, 8, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | 57 | {0, 8, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, |
@@ -137,6 +140,7 @@ static void __init init_ioports(void) | |||
137 | } | 140 | } |
138 | 141 | ||
139 | cpm2_smc_clk_setup(CPM_CLK_SMC2, CPM_BRG8); | 142 | cpm2_smc_clk_setup(CPM_CLK_SMC2, CPM_BRG8); |
143 | cpm2_smc_clk_setup(CPM_CLK_SMC1, CPM_BRG7); | ||
140 | cpm2_clk_setup(CPM_CLK_SCC1, CPM_CLK11, CPM_CLK_RX); | 144 | cpm2_clk_setup(CPM_CLK_SCC1, CPM_CLK11, CPM_CLK_RX); |
141 | cpm2_clk_setup(CPM_CLK_SCC1, CPM_CLK11, CPM_CLK_TX); | 145 | cpm2_clk_setup(CPM_CLK_SCC1, CPM_CLK11, CPM_CLK_TX); |
142 | cpm2_clk_setup(CPM_CLK_SCC3, CPM_CLK5, CPM_CLK_RTX); | 146 | cpm2_clk_setup(CPM_CLK_SCC3, CPM_CLK5, CPM_CLK_RTX); |
diff --git a/arch/powerpc/platforms/83xx/Kconfig b/arch/powerpc/platforms/83xx/Kconfig index 73f4135f3a1a..670a033264c0 100644 --- a/arch/powerpc/platforms/83xx/Kconfig +++ b/arch/powerpc/platforms/83xx/Kconfig | |||
@@ -114,18 +114,21 @@ config KMETER1 | |||
114 | 114 | ||
115 | endif | 115 | endif |
116 | 116 | ||
117 | # used for usb | 117 | # used for usb & gpio |
118 | config PPC_MPC831x | 118 | config PPC_MPC831x |
119 | bool | 119 | bool |
120 | select ARCH_WANT_OPTIONAL_GPIOLIB | ||
120 | 121 | ||
121 | # used for math-emu | 122 | # used for math-emu |
122 | config PPC_MPC832x | 123 | config PPC_MPC832x |
123 | bool | 124 | bool |
124 | 125 | ||
125 | # used for usb | 126 | # used for usb & gpio |
126 | config PPC_MPC834x | 127 | config PPC_MPC834x |
127 | bool | 128 | bool |
129 | select ARCH_WANT_OPTIONAL_GPIOLIB | ||
128 | 130 | ||
129 | # used for usb | 131 | # used for usb & gpio |
130 | config PPC_MPC837x | 132 | config PPC_MPC837x |
131 | bool | 133 | bool |
134 | select ARCH_WANT_OPTIONAL_GPIOLIB | ||
diff --git a/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c b/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c index 70798ac911ef..ef6537b8ed33 100644 --- a/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c +++ b/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c | |||
@@ -21,6 +21,8 @@ | |||
21 | #include <linux/of.h> | 21 | #include <linux/of.h> |
22 | #include <linux/of_gpio.h> | 22 | #include <linux/of_gpio.h> |
23 | #include <linux/slab.h> | 23 | #include <linux/slab.h> |
24 | #include <linux/kthread.h> | ||
25 | #include <linux/reboot.h> | ||
24 | #include <asm/prom.h> | 26 | #include <asm/prom.h> |
25 | #include <asm/machdep.h> | 27 | #include <asm/machdep.h> |
26 | 28 | ||
@@ -30,6 +32,7 @@ | |||
30 | */ | 32 | */ |
31 | #define MCU_REG_CTRL 0x20 | 33 | #define MCU_REG_CTRL 0x20 |
32 | #define MCU_CTRL_POFF 0x40 | 34 | #define MCU_CTRL_POFF 0x40 |
35 | #define MCU_CTRL_BTN 0x80 | ||
33 | 36 | ||
34 | #define MCU_NUM_GPIO 2 | 37 | #define MCU_NUM_GPIO 2 |
35 | 38 | ||
@@ -42,13 +45,55 @@ struct mcu { | |||
42 | 45 | ||
43 | static struct mcu *glob_mcu; | 46 | static struct mcu *glob_mcu; |
44 | 47 | ||
48 | struct task_struct *shutdown_thread; | ||
49 | static int shutdown_thread_fn(void *data) | ||
50 | { | ||
51 | int ret; | ||
52 | struct mcu *mcu = glob_mcu; | ||
53 | |||
54 | while (!kthread_should_stop()) { | ||
55 | ret = i2c_smbus_read_byte_data(mcu->client, MCU_REG_CTRL); | ||
56 | if (ret < 0) | ||
57 | pr_err("MCU status reg read failed.\n"); | ||
58 | mcu->reg_ctrl = ret; | ||
59 | |||
60 | |||
61 | if (mcu->reg_ctrl & MCU_CTRL_BTN) { | ||
62 | i2c_smbus_write_byte_data(mcu->client, MCU_REG_CTRL, | ||
63 | mcu->reg_ctrl & ~MCU_CTRL_BTN); | ||
64 | |||
65 | ctrl_alt_del(); | ||
66 | } | ||
67 | |||
68 | set_current_state(TASK_INTERRUPTIBLE); | ||
69 | schedule_timeout(HZ); | ||
70 | } | ||
71 | |||
72 | return 0; | ||
73 | } | ||
74 | |||
75 | static ssize_t show_status(struct device *d, | ||
76 | struct device_attribute *attr, char *buf) | ||
77 | { | ||
78 | int ret; | ||
79 | struct mcu *mcu = glob_mcu; | ||
80 | |||
81 | ret = i2c_smbus_read_byte_data(mcu->client, MCU_REG_CTRL); | ||
82 | if (ret < 0) | ||
83 | return -ENODEV; | ||
84 | mcu->reg_ctrl = ret; | ||
85 | |||
86 | return sprintf(buf, "%02x\n", ret); | ||
87 | } | ||
88 | static DEVICE_ATTR(status, S_IRUGO, show_status, NULL); | ||
89 | |||
45 | static void mcu_power_off(void) | 90 | static void mcu_power_off(void) |
46 | { | 91 | { |
47 | struct mcu *mcu = glob_mcu; | 92 | struct mcu *mcu = glob_mcu; |
48 | 93 | ||
49 | pr_info("Sending power-off request to the MCU...\n"); | 94 | pr_info("Sending power-off request to the MCU...\n"); |
50 | mutex_lock(&mcu->lock); | 95 | mutex_lock(&mcu->lock); |
51 | i2c_smbus_write_byte_data(glob_mcu->client, MCU_REG_CTRL, | 96 | i2c_smbus_write_byte_data(mcu->client, MCU_REG_CTRL, |
52 | mcu->reg_ctrl | MCU_CTRL_POFF); | 97 | mcu->reg_ctrl | MCU_CTRL_POFF); |
53 | mutex_unlock(&mcu->lock); | 98 | mutex_unlock(&mcu->lock); |
54 | } | 99 | } |
@@ -130,6 +175,13 @@ static int __devinit mcu_probe(struct i2c_client *client, | |||
130 | dev_info(&client->dev, "will provide power-off service\n"); | 175 | dev_info(&client->dev, "will provide power-off service\n"); |
131 | } | 176 | } |
132 | 177 | ||
178 | if (device_create_file(&client->dev, &dev_attr_status)) | ||
179 | dev_err(&client->dev, | ||
180 | "couldn't create device file for status\n"); | ||
181 | |||
182 | shutdown_thread = kthread_run(shutdown_thread_fn, NULL, | ||
183 | "mcu-i2c-shdn"); | ||
184 | |||
133 | return 0; | 185 | return 0; |
134 | err: | 186 | err: |
135 | kfree(mcu); | 187 | kfree(mcu); |
@@ -141,6 +193,10 @@ static int __devexit mcu_remove(struct i2c_client *client) | |||
141 | struct mcu *mcu = i2c_get_clientdata(client); | 193 | struct mcu *mcu = i2c_get_clientdata(client); |
142 | int ret; | 194 | int ret; |
143 | 195 | ||
196 | kthread_stop(shutdown_thread); | ||
197 | |||
198 | device_remove_file(&client->dev, &dev_attr_status); | ||
199 | |||
144 | if (glob_mcu == mcu) { | 200 | if (glob_mcu == mcu) { |
145 | ppc_md.power_off = NULL; | 201 | ppc_md.power_off = NULL; |
146 | glob_mcu = NULL; | 202 | glob_mcu = NULL; |
diff --git a/arch/powerpc/platforms/83xx/suspend.c b/arch/powerpc/platforms/83xx/suspend.c index 104faa8aa23c..edf66870d978 100644 --- a/arch/powerpc/platforms/83xx/suspend.c +++ b/arch/powerpc/platforms/83xx/suspend.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/suspend.h> | 21 | #include <linux/suspend.h> |
22 | #include <linux/fsl_devices.h> | 22 | #include <linux/fsl_devices.h> |
23 | #include <linux/of_platform.h> | 23 | #include <linux/of_platform.h> |
24 | #include <linux/export.h> | ||
24 | 25 | ||
25 | #include <asm/reg.h> | 26 | #include <asm/reg.h> |
26 | #include <asm/io.h> | 27 | #include <asm/io.h> |
diff --git a/arch/powerpc/platforms/85xx/Kconfig b/arch/powerpc/platforms/85xx/Kconfig index 12f5932dadc9..45023e26aea3 100644 --- a/arch/powerpc/platforms/85xx/Kconfig +++ b/arch/powerpc/platforms/85xx/Kconfig | |||
@@ -171,17 +171,18 @@ config SBC8560 | |||
171 | help | 171 | help |
172 | This option enables support for the Wind River SBC8560 board | 172 | This option enables support for the Wind River SBC8560 board |
173 | 173 | ||
174 | config P2040_RDB | 174 | config P2041_RDB |
175 | bool "Freescale P2040 RDB" | 175 | bool "Freescale P2041 RDB" |
176 | select DEFAULT_UIMAGE | 176 | select DEFAULT_UIMAGE |
177 | select PPC_E500MC | 177 | select PPC_E500MC |
178 | select PHYS_64BIT | 178 | select PHYS_64BIT |
179 | select SWIOTLB | 179 | select SWIOTLB |
180 | select MPC8xxx_GPIO | 180 | select ARCH_REQUIRE_GPIOLIB |
181 | select GPIO_MPC8XXX | ||
181 | select HAS_RAPIDIO | 182 | select HAS_RAPIDIO |
182 | select PPC_EPAPR_HV_PIC | 183 | select PPC_EPAPR_HV_PIC |
183 | help | 184 | help |
184 | This option enables support for the P2040 RDB board | 185 | This option enables support for the P2041 RDB board |
185 | 186 | ||
186 | config P3041_DS | 187 | config P3041_DS |
187 | bool "Freescale P3041 DS" | 188 | bool "Freescale P3041 DS" |
@@ -189,19 +190,33 @@ config P3041_DS | |||
189 | select PPC_E500MC | 190 | select PPC_E500MC |
190 | select PHYS_64BIT | 191 | select PHYS_64BIT |
191 | select SWIOTLB | 192 | select SWIOTLB |
192 | select MPC8xxx_GPIO | 193 | select ARCH_REQUIRE_GPIOLIB |
194 | select GPIO_MPC8XXX | ||
193 | select HAS_RAPIDIO | 195 | select HAS_RAPIDIO |
194 | select PPC_EPAPR_HV_PIC | 196 | select PPC_EPAPR_HV_PIC |
195 | help | 197 | help |
196 | This option enables support for the P3041 DS board | 198 | This option enables support for the P3041 DS board |
197 | 199 | ||
200 | config P3060_QDS | ||
201 | bool "Freescale P3060 QDS" | ||
202 | select DEFAULT_UIMAGE | ||
203 | select PPC_E500MC | ||
204 | select PHYS_64BIT | ||
205 | select SWIOTLB | ||
206 | select MPC8xxx_GPIO | ||
207 | select HAS_RAPIDIO | ||
208 | select PPC_EPAPR_HV_PIC | ||
209 | help | ||
210 | This option enables support for the P3060 QDS board | ||
211 | |||
198 | config P4080_DS | 212 | config P4080_DS |
199 | bool "Freescale P4080 DS" | 213 | bool "Freescale P4080 DS" |
200 | select DEFAULT_UIMAGE | 214 | select DEFAULT_UIMAGE |
201 | select PPC_E500MC | 215 | select PPC_E500MC |
202 | select PHYS_64BIT | 216 | select PHYS_64BIT |
203 | select SWIOTLB | 217 | select SWIOTLB |
204 | select MPC8xxx_GPIO | 218 | select ARCH_REQUIRE_GPIOLIB |
219 | select GPIO_MPC8XXX | ||
205 | select HAS_RAPIDIO | 220 | select HAS_RAPIDIO |
206 | select PPC_EPAPR_HV_PIC | 221 | select PPC_EPAPR_HV_PIC |
207 | help | 222 | help |
@@ -216,7 +231,8 @@ config P5020_DS | |||
216 | select PPC_E500MC | 231 | select PPC_E500MC |
217 | select PHYS_64BIT | 232 | select PHYS_64BIT |
218 | select SWIOTLB | 233 | select SWIOTLB |
219 | select MPC8xxx_GPIO | 234 | select ARCH_REQUIRE_GPIOLIB |
235 | select GPIO_MPC8XXX | ||
220 | select HAS_RAPIDIO | 236 | select HAS_RAPIDIO |
221 | select PPC_EPAPR_HV_PIC | 237 | select PPC_EPAPR_HV_PIC |
222 | help | 238 | help |
diff --git a/arch/powerpc/platforms/85xx/Makefile b/arch/powerpc/platforms/85xx/Makefile index a971b32c5c0a..bc5acb95917a 100644 --- a/arch/powerpc/platforms/85xx/Makefile +++ b/arch/powerpc/platforms/85xx/Makefile | |||
@@ -13,8 +13,9 @@ obj-$(CONFIG_MPC85xx_RDB) += mpc85xx_rdb.o | |||
13 | obj-$(CONFIG_P1010_RDB) += p1010rdb.o | 13 | obj-$(CONFIG_P1010_RDB) += p1010rdb.o |
14 | obj-$(CONFIG_P1022_DS) += p1022_ds.o | 14 | obj-$(CONFIG_P1022_DS) += p1022_ds.o |
15 | obj-$(CONFIG_P1023_RDS) += p1023_rds.o | 15 | obj-$(CONFIG_P1023_RDS) += p1023_rds.o |
16 | obj-$(CONFIG_P2040_RDB) += p2040_rdb.o corenet_ds.o | 16 | obj-$(CONFIG_P2041_RDB) += p2041_rdb.o corenet_ds.o |
17 | obj-$(CONFIG_P3041_DS) += p3041_ds.o corenet_ds.o | 17 | obj-$(CONFIG_P3041_DS) += p3041_ds.o corenet_ds.o |
18 | obj-$(CONFIG_P3060_QDS) += p3060_qds.o corenet_ds.o | ||
18 | obj-$(CONFIG_P4080_DS) += p4080_ds.o corenet_ds.o | 19 | obj-$(CONFIG_P4080_DS) += p4080_ds.o corenet_ds.o |
19 | obj-$(CONFIG_P5020_DS) += p5020_ds.o corenet_ds.o | 20 | obj-$(CONFIG_P5020_DS) += p5020_ds.o corenet_ds.o |
20 | obj-$(CONFIG_STX_GP3) += stx_gp3.o | 21 | obj-$(CONFIG_STX_GP3) += stx_gp3.o |
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_cds.c b/arch/powerpc/platforms/85xx/mpc85xx_cds.c index 2bf99786d249..66cb8d64079f 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_cds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_cds.c | |||
@@ -23,7 +23,6 @@ | |||
23 | #include <linux/delay.h> | 23 | #include <linux/delay.h> |
24 | #include <linux/seq_file.h> | 24 | #include <linux/seq_file.h> |
25 | #include <linux/initrd.h> | 25 | #include <linux/initrd.h> |
26 | #include <linux/module.h> | ||
27 | #include <linux/interrupt.h> | 26 | #include <linux/interrupt.h> |
28 | #include <linux/fsl_devices.h> | 27 | #include <linux/fsl_devices.h> |
29 | #include <linux/of_platform.h> | 28 | #include <linux/of_platform.h> |
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_mds.c b/arch/powerpc/platforms/85xx/mpc85xx_mds.c index 973b3f4a4b49..a23a3ff634c5 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_mds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_mds.c | |||
@@ -28,7 +28,6 @@ | |||
28 | #include <linux/delay.h> | 28 | #include <linux/delay.h> |
29 | #include <linux/seq_file.h> | 29 | #include <linux/seq_file.h> |
30 | #include <linux/initrd.h> | 30 | #include <linux/initrd.h> |
31 | #include <linux/module.h> | ||
32 | #include <linux/fsl_devices.h> | 31 | #include <linux/fsl_devices.h> |
33 | #include <linux/of_platform.h> | 32 | #include <linux/of_platform.h> |
34 | #include <linux/of_device.h> | 33 | #include <linux/of_device.h> |
diff --git a/arch/powerpc/platforms/85xx/p1022_ds.c b/arch/powerpc/platforms/85xx/p1022_ds.c index 266b3aadfe5e..fda15716fada 100644 --- a/arch/powerpc/platforms/85xx/p1022_ds.c +++ b/arch/powerpc/platforms/85xx/p1022_ds.c | |||
@@ -93,8 +93,8 @@ | |||
93 | * The Area Descriptor is a 32-bit value that determine which bits in each | 93 | * The Area Descriptor is a 32-bit value that determine which bits in each |
94 | * pixel are to be used for each color. | 94 | * pixel are to be used for each color. |
95 | */ | 95 | */ |
96 | static unsigned int p1022ds_get_pixel_format(unsigned int bits_per_pixel, | 96 | static u32 p1022ds_get_pixel_format(enum fsl_diu_monitor_port port, |
97 | int monitor_port) | 97 | unsigned int bits_per_pixel) |
98 | { | 98 | { |
99 | switch (bits_per_pixel) { | 99 | switch (bits_per_pixel) { |
100 | case 32: | 100 | case 32: |
@@ -118,7 +118,8 @@ static unsigned int p1022ds_get_pixel_format(unsigned int bits_per_pixel, | |||
118 | * On some boards, the gamma table for some ports may need to be modified. | 118 | * On some boards, the gamma table for some ports may need to be modified. |
119 | * This is not the case on the P1022DS, so we do nothing. | 119 | * This is not the case on the P1022DS, so we do nothing. |
120 | */ | 120 | */ |
121 | static void p1022ds_set_gamma_table(int monitor_port, char *gamma_table_base) | 121 | static void p1022ds_set_gamma_table(enum fsl_diu_monitor_port port, |
122 | char *gamma_table_base) | ||
122 | { | 123 | { |
123 | } | 124 | } |
124 | 125 | ||
@@ -126,38 +127,43 @@ static void p1022ds_set_gamma_table(int monitor_port, char *gamma_table_base) | |||
126 | * p1022ds_set_monitor_port: switch the output to a different monitor port | 127 | * p1022ds_set_monitor_port: switch the output to a different monitor port |
127 | * | 128 | * |
128 | */ | 129 | */ |
129 | static void p1022ds_set_monitor_port(int monitor_port) | 130 | static void p1022ds_set_monitor_port(enum fsl_diu_monitor_port port) |
130 | { | 131 | { |
131 | struct device_node *pixis_node; | 132 | struct device_node *np; |
132 | void __iomem *pixis; | 133 | void __iomem *pixis; |
133 | u8 __iomem *brdcfg1; | 134 | u8 __iomem *brdcfg1; |
134 | 135 | ||
135 | pixis_node = of_find_compatible_node(NULL, NULL, "fsl,p1022ds-pixis"); | 136 | np = of_find_compatible_node(NULL, NULL, "fsl,p1022ds-fpga"); |
136 | if (!pixis_node) { | 137 | if (!np) |
138 | /* older device trees used "fsl,p1022ds-pixis" */ | ||
139 | np = of_find_compatible_node(NULL, NULL, "fsl,p1022ds-pixis"); | ||
140 | if (!np) { | ||
137 | pr_err("p1022ds: missing ngPIXIS node\n"); | 141 | pr_err("p1022ds: missing ngPIXIS node\n"); |
138 | return; | 142 | return; |
139 | } | 143 | } |
140 | 144 | ||
141 | pixis = of_iomap(pixis_node, 0); | 145 | pixis = of_iomap(np, 0); |
142 | if (!pixis) { | 146 | if (!pixis) { |
143 | pr_err("p1022ds: could not map ngPIXIS registers\n"); | 147 | pr_err("p1022ds: could not map ngPIXIS registers\n"); |
144 | return; | 148 | return; |
145 | } | 149 | } |
146 | brdcfg1 = pixis + 9; /* BRDCFG1 is at offset 9 in the ngPIXIS */ | 150 | brdcfg1 = pixis + 9; /* BRDCFG1 is at offset 9 in the ngPIXIS */ |
147 | 151 | ||
148 | switch (monitor_port) { | 152 | switch (port) { |
149 | case 0: /* DVI */ | 153 | case FSL_DIU_PORT_DVI: |
154 | printk(KERN_INFO "%s:%u\n", __func__, __LINE__); | ||
150 | /* Enable the DVI port, disable the DFP and the backlight */ | 155 | /* Enable the DVI port, disable the DFP and the backlight */ |
151 | clrsetbits_8(brdcfg1, PX_BRDCFG1_DFPEN | PX_BRDCFG1_BACKLIGHT, | 156 | clrsetbits_8(brdcfg1, PX_BRDCFG1_DFPEN | PX_BRDCFG1_BACKLIGHT, |
152 | PX_BRDCFG1_DVIEN); | 157 | PX_BRDCFG1_DVIEN); |
153 | break; | 158 | break; |
154 | case 1: /* Single link LVDS */ | 159 | case FSL_DIU_PORT_LVDS: |
160 | printk(KERN_INFO "%s:%u\n", __func__, __LINE__); | ||
155 | /* Enable the DFP port, disable the DVI and the backlight */ | 161 | /* Enable the DFP port, disable the DVI and the backlight */ |
156 | clrsetbits_8(brdcfg1, PX_BRDCFG1_DVIEN | PX_BRDCFG1_BACKLIGHT, | 162 | clrsetbits_8(brdcfg1, PX_BRDCFG1_DVIEN | PX_BRDCFG1_BACKLIGHT, |
157 | PX_BRDCFG1_DFPEN); | 163 | PX_BRDCFG1_DFPEN); |
158 | break; | 164 | break; |
159 | default: | 165 | default: |
160 | pr_err("p1022ds: unsupported monitor port %i\n", monitor_port); | 166 | pr_err("p1022ds: unsupported monitor port %i\n", port); |
161 | } | 167 | } |
162 | 168 | ||
163 | iounmap(pixis); | 169 | iounmap(pixis); |
@@ -214,23 +220,18 @@ void p1022ds_set_pixel_clock(unsigned int pixclock) | |||
214 | } | 220 | } |
215 | 221 | ||
216 | /** | 222 | /** |
217 | * p1022ds_show_monitor_port: show the current monitor | 223 | * p1022ds_valid_monitor_port: set the monitor port for sysfs |
218 | * | ||
219 | * This function returns a string indicating whether the current monitor is | ||
220 | * set to DVI or LVDS. | ||
221 | */ | ||
222 | ssize_t p1022ds_show_monitor_port(int monitor_port, char *buf) | ||
223 | { | ||
224 | return sprintf(buf, "%c0 - DVI\n%c1 - Single link LVDS\n", | ||
225 | monitor_port == 0 ? '*' : ' ', monitor_port == 1 ? '*' : ' '); | ||
226 | } | ||
227 | |||
228 | /** | ||
229 | * p1022ds_set_sysfs_monitor_port: set the monitor port for sysfs | ||
230 | */ | 224 | */ |
231 | int p1022ds_set_sysfs_monitor_port(int val) | 225 | enum fsl_diu_monitor_port |
226 | p1022ds_valid_monitor_port(enum fsl_diu_monitor_port port) | ||
232 | { | 227 | { |
233 | return val < 2 ? val : 0; | 228 | switch (port) { |
229 | case FSL_DIU_PORT_DVI: | ||
230 | case FSL_DIU_PORT_LVDS: | ||
231 | return port; | ||
232 | default: | ||
233 | return FSL_DIU_PORT_DVI; /* Dual-link LVDS is not supported */ | ||
234 | } | ||
234 | } | 235 | } |
235 | 236 | ||
236 | #endif | 237 | #endif |
@@ -305,8 +306,7 @@ static void __init p1022_ds_setup_arch(void) | |||
305 | diu_ops.set_gamma_table = p1022ds_set_gamma_table; | 306 | diu_ops.set_gamma_table = p1022ds_set_gamma_table; |
306 | diu_ops.set_monitor_port = p1022ds_set_monitor_port; | 307 | diu_ops.set_monitor_port = p1022ds_set_monitor_port; |
307 | diu_ops.set_pixel_clock = p1022ds_set_pixel_clock; | 308 | diu_ops.set_pixel_clock = p1022ds_set_pixel_clock; |
308 | diu_ops.show_monitor_port = p1022ds_show_monitor_port; | 309 | diu_ops.valid_monitor_port = p1022ds_valid_monitor_port; |
309 | diu_ops.set_sysfs_monitor_port = p1022ds_set_sysfs_monitor_port; | ||
310 | #endif | 310 | #endif |
311 | 311 | ||
312 | #ifdef CONFIG_SMP | 312 | #ifdef CONFIG_SMP |
diff --git a/arch/powerpc/platforms/85xx/p2040_rdb.c b/arch/powerpc/platforms/85xx/p2041_rdb.c index 32b56ac73dfb..eda6ed5683e1 100644 --- a/arch/powerpc/platforms/85xx/p2040_rdb.c +++ b/arch/powerpc/platforms/85xx/p2041_rdb.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * P2040 RDB Setup | 2 | * P2041 RDB Setup |
3 | * | 3 | * |
4 | * Copyright 2011 Freescale Semiconductor Inc. | 4 | * Copyright 2011 Freescale Semiconductor Inc. |
5 | * | 5 | * |
@@ -35,18 +35,18 @@ | |||
35 | /* | 35 | /* |
36 | * Called very early, device-tree isn't unflattened | 36 | * Called very early, device-tree isn't unflattened |
37 | */ | 37 | */ |
38 | static int __init p2040_rdb_probe(void) | 38 | static int __init p2041_rdb_probe(void) |
39 | { | 39 | { |
40 | unsigned long root = of_get_flat_dt_root(); | 40 | unsigned long root = of_get_flat_dt_root(); |
41 | #ifdef CONFIG_SMP | 41 | #ifdef CONFIG_SMP |
42 | extern struct smp_ops_t smp_85xx_ops; | 42 | extern struct smp_ops_t smp_85xx_ops; |
43 | #endif | 43 | #endif |
44 | 44 | ||
45 | if (of_flat_dt_is_compatible(root, "fsl,P2040RDB")) | 45 | if (of_flat_dt_is_compatible(root, "fsl,P2041RDB")) |
46 | return 1; | 46 | return 1; |
47 | 47 | ||
48 | /* Check if we're running under the Freescale hypervisor */ | 48 | /* Check if we're running under the Freescale hypervisor */ |
49 | if (of_flat_dt_is_compatible(root, "fsl,P2040RDB-hv")) { | 49 | if (of_flat_dt_is_compatible(root, "fsl,P2041RDB-hv")) { |
50 | ppc_md.init_IRQ = ehv_pic_init; | 50 | ppc_md.init_IRQ = ehv_pic_init; |
51 | ppc_md.get_irq = ehv_pic_get_irq; | 51 | ppc_md.get_irq = ehv_pic_get_irq; |
52 | ppc_md.restart = fsl_hv_restart; | 52 | ppc_md.restart = fsl_hv_restart; |
@@ -66,9 +66,9 @@ static int __init p2040_rdb_probe(void) | |||
66 | return 0; | 66 | return 0; |
67 | } | 67 | } |
68 | 68 | ||
69 | define_machine(p2040_rdb) { | 69 | define_machine(p2041_rdb) { |
70 | .name = "P2040 RDB", | 70 | .name = "P2041 RDB", |
71 | .probe = p2040_rdb_probe, | 71 | .probe = p2041_rdb_probe, |
72 | .setup_arch = corenet_ds_setup_arch, | 72 | .setup_arch = corenet_ds_setup_arch, |
73 | .init_IRQ = corenet_ds_pic_init, | 73 | .init_IRQ = corenet_ds_pic_init, |
74 | #ifdef CONFIG_PCI | 74 | #ifdef CONFIG_PCI |
@@ -81,8 +81,8 @@ define_machine(p2040_rdb) { | |||
81 | .power_save = e500_idle, | 81 | .power_save = e500_idle, |
82 | }; | 82 | }; |
83 | 83 | ||
84 | machine_device_initcall(p2040_rdb, corenet_ds_publish_devices); | 84 | machine_device_initcall(p2041_rdb, corenet_ds_publish_devices); |
85 | 85 | ||
86 | #ifdef CONFIG_SWIOTLB | 86 | #ifdef CONFIG_SWIOTLB |
87 | machine_arch_initcall(p2040_rdb, swiotlb_setup_bus_notifier); | 87 | machine_arch_initcall(p2041_rdb, swiotlb_setup_bus_notifier); |
88 | #endif | 88 | #endif |
diff --git a/arch/powerpc/platforms/85xx/p3060_qds.c b/arch/powerpc/platforms/85xx/p3060_qds.c new file mode 100644 index 000000000000..01dcf44871e9 --- /dev/null +++ b/arch/powerpc/platforms/85xx/p3060_qds.c | |||
@@ -0,0 +1,77 @@ | |||
1 | /* | ||
2 | * P3060 QDS Setup | ||
3 | * | ||
4 | * Copyright 2011 Freescale Semiconductor Inc. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License as published by the | ||
8 | * Free Software Foundation; either version 2 of the License, or (at your | ||
9 | * option) any later version. | ||
10 | */ | ||
11 | |||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/interrupt.h> | ||
14 | #include <linux/phy.h> | ||
15 | #include <asm/machdep.h> | ||
16 | #include <asm/udbg.h> | ||
17 | #include <asm/mpic.h> | ||
18 | #include <linux/of_platform.h> | ||
19 | #include <sysdev/fsl_soc.h> | ||
20 | #include <sysdev/fsl_pci.h> | ||
21 | #include <asm/ehv_pic.h> | ||
22 | #include "corenet_ds.h" | ||
23 | |||
24 | /* | ||
25 | * Called very early, device-tree isn't unflattened | ||
26 | */ | ||
27 | static int __init p3060_qds_probe(void) | ||
28 | { | ||
29 | unsigned long root = of_get_flat_dt_root(); | ||
30 | #ifdef CONFIG_SMP | ||
31 | extern struct smp_ops_t smp_85xx_ops; | ||
32 | #endif | ||
33 | |||
34 | if (of_flat_dt_is_compatible(root, "fsl,P3060QDS")) | ||
35 | return 1; | ||
36 | |||
37 | /* Check if we're running under the Freescale hypervisor */ | ||
38 | if (of_flat_dt_is_compatible(root, "fsl,P3060QDS-hv")) { | ||
39 | ppc_md.init_IRQ = ehv_pic_init; | ||
40 | ppc_md.get_irq = ehv_pic_get_irq; | ||
41 | ppc_md.restart = fsl_hv_restart; | ||
42 | ppc_md.power_off = fsl_hv_halt; | ||
43 | ppc_md.halt = fsl_hv_halt; | ||
44 | #ifdef CONFIG_SMP | ||
45 | /* | ||
46 | * Disable the timebase sync operations because we can't write | ||
47 | * to the timebase registers under the hypervisor. | ||
48 | */ | ||
49 | smp_85xx_ops.give_timebase = NULL; | ||
50 | smp_85xx_ops.take_timebase = NULL; | ||
51 | #endif | ||
52 | return 1; | ||
53 | } | ||
54 | |||
55 | return 0; | ||
56 | } | ||
57 | |||
58 | define_machine(p3060_qds) { | ||
59 | .name = "P3060 QDS", | ||
60 | .probe = p3060_qds_probe, | ||
61 | .setup_arch = corenet_ds_setup_arch, | ||
62 | .init_IRQ = corenet_ds_pic_init, | ||
63 | #ifdef CONFIG_PCI | ||
64 | .pcibios_fixup_bus = fsl_pcibios_fixup_bus, | ||
65 | #endif | ||
66 | .get_irq = mpic_get_coreint_irq, | ||
67 | .restart = fsl_rstcr_restart, | ||
68 | .calibrate_decr = generic_calibrate_decr, | ||
69 | .progress = udbg_progress, | ||
70 | .power_save = e500_idle, | ||
71 | }; | ||
72 | |||
73 | machine_device_initcall(p3060_qds, declare_of_platform_devices); | ||
74 | |||
75 | #ifdef CONFIG_SWIOTLB | ||
76 | machine_arch_initcall(p3060_qds, swiotlb_setup_bus_notifier); | ||
77 | #endif | ||
diff --git a/arch/powerpc/platforms/85xx/sbc8548.c b/arch/powerpc/platforms/85xx/sbc8548.c index d07dcb7f4ee9..14632a971225 100644 --- a/arch/powerpc/platforms/85xx/sbc8548.c +++ b/arch/powerpc/platforms/85xx/sbc8548.c | |||
@@ -26,7 +26,6 @@ | |||
26 | #include <linux/delay.h> | 26 | #include <linux/delay.h> |
27 | #include <linux/seq_file.h> | 27 | #include <linux/seq_file.h> |
28 | #include <linux/initrd.h> | 28 | #include <linux/initrd.h> |
29 | #include <linux/module.h> | ||
30 | #include <linux/interrupt.h> | 29 | #include <linux/interrupt.h> |
31 | #include <linux/fsl_devices.h> | 30 | #include <linux/fsl_devices.h> |
32 | #include <linux/of_platform.h> | 31 | #include <linux/of_platform.h> |
diff --git a/arch/powerpc/platforms/85xx/sbc8560.c b/arch/powerpc/platforms/85xx/sbc8560.c index 09ced7221750..cebd786dc334 100644 --- a/arch/powerpc/platforms/85xx/sbc8560.c +++ b/arch/powerpc/platforms/85xx/sbc8560.c | |||
@@ -283,7 +283,7 @@ static int __init sbc8560_bdrstcr_init(void) | |||
283 | 283 | ||
284 | of_address_to_resource(np, 0, &res); | 284 | of_address_to_resource(np, 0, &res); |
285 | 285 | ||
286 | printk(KERN_INFO "sbc8560: Found BRSTCR at i/o 0x%x\n", res.start); | 286 | printk(KERN_INFO "sbc8560: Found BRSTCR at %pR\n", &res); |
287 | 287 | ||
288 | brstcr = ioremap(res.start, resource_size(&res)); | 288 | brstcr = ioremap(res.start, resource_size(&res)); |
289 | if(!brstcr) | 289 | if(!brstcr) |
diff --git a/arch/powerpc/platforms/85xx/smp.c b/arch/powerpc/platforms/85xx/smp.c index 5b9b901f6443..2df4785ffd4e 100644 --- a/arch/powerpc/platforms/85xx/smp.c +++ b/arch/powerpc/platforms/85xx/smp.c | |||
@@ -48,10 +48,11 @@ smp_85xx_kick_cpu(int nr) | |||
48 | const u64 *cpu_rel_addr; | 48 | const u64 *cpu_rel_addr; |
49 | __iomem u32 *bptr_vaddr; | 49 | __iomem u32 *bptr_vaddr; |
50 | struct device_node *np; | 50 | struct device_node *np; |
51 | int n = 0; | 51 | int n = 0, hw_cpu = get_hard_smp_processor_id(nr); |
52 | int ioremappable; | 52 | int ioremappable; |
53 | 53 | ||
54 | WARN_ON (nr < 0 || nr >= NR_CPUS); | 54 | WARN_ON(nr < 0 || nr >= NR_CPUS); |
55 | WARN_ON(hw_cpu < 0 || hw_cpu >= NR_CPUS); | ||
55 | 56 | ||
56 | pr_debug("smp_85xx_kick_cpu: kick CPU #%d\n", nr); | 57 | pr_debug("smp_85xx_kick_cpu: kick CPU #%d\n", nr); |
57 | 58 | ||
@@ -79,7 +80,7 @@ smp_85xx_kick_cpu(int nr) | |||
79 | 80 | ||
80 | local_irq_save(flags); | 81 | local_irq_save(flags); |
81 | 82 | ||
82 | out_be32(bptr_vaddr + BOOT_ENTRY_PIR, nr); | 83 | out_be32(bptr_vaddr + BOOT_ENTRY_PIR, hw_cpu); |
83 | #ifdef CONFIG_PPC32 | 84 | #ifdef CONFIG_PPC32 |
84 | out_be32(bptr_vaddr + BOOT_ENTRY_ADDR_LOWER, __pa(__early_start)); | 85 | out_be32(bptr_vaddr + BOOT_ENTRY_ADDR_LOWER, __pa(__early_start)); |
85 | 86 | ||
@@ -88,7 +89,7 @@ smp_85xx_kick_cpu(int nr) | |||
88 | (ulong)(bptr_vaddr + SIZE_BOOT_ENTRY)); | 89 | (ulong)(bptr_vaddr + SIZE_BOOT_ENTRY)); |
89 | 90 | ||
90 | /* Wait a bit for the CPU to ack. */ | 91 | /* Wait a bit for the CPU to ack. */ |
91 | while ((__secondary_hold_acknowledge != nr) && (++n < 1000)) | 92 | while ((__secondary_hold_acknowledge != hw_cpu) && (++n < 1000)) |
92 | mdelay(1); | 93 | mdelay(1); |
93 | #else | 94 | #else |
94 | smp_generic_kick_cpu(nr); | 95 | smp_generic_kick_cpu(nr); |
@@ -206,7 +207,7 @@ static void mpc85xx_smp_machine_kexec(struct kimage *image) | |||
206 | if ( !timeout ) | 207 | if ( !timeout ) |
207 | printk(KERN_ERR "Unable to bring down secondary cpu(s)"); | 208 | printk(KERN_ERR "Unable to bring down secondary cpu(s)"); |
208 | 209 | ||
209 | for (i = 0; i < num_cpus; i++) | 210 | for_each_online_cpu(i) |
210 | { | 211 | { |
211 | if ( i == smp_processor_id() ) continue; | 212 | if ( i == smp_processor_id() ) continue; |
212 | mpic_reset_core(i); | 213 | mpic_reset_core(i); |
@@ -243,6 +244,7 @@ void __init mpc85xx_smp_init(void) | |||
243 | * If left NULL, .message_pass defaults to | 244 | * If left NULL, .message_pass defaults to |
244 | * smp_muxed_ipi_message_pass | 245 | * smp_muxed_ipi_message_pass |
245 | */ | 246 | */ |
247 | smp_85xx_ops.message_pass = NULL; | ||
246 | smp_85xx_ops.cause_ipi = doorbell_cause_ipi; | 248 | smp_85xx_ops.cause_ipi = doorbell_cause_ipi; |
247 | } | 249 | } |
248 | 250 | ||
diff --git a/arch/powerpc/platforms/86xx/Kconfig b/arch/powerpc/platforms/86xx/Kconfig index a0b5638c5dc8..8d6599d54ea6 100644 --- a/arch/powerpc/platforms/86xx/Kconfig +++ b/arch/powerpc/platforms/86xx/Kconfig | |||
@@ -4,6 +4,7 @@ menuconfig PPC_86xx | |||
4 | depends on 6xx | 4 | depends on 6xx |
5 | select FSL_SOC | 5 | select FSL_SOC |
6 | select ALTIVEC | 6 | select ALTIVEC |
7 | select ARCH_WANT_OPTIONAL_GPIOLIB | ||
7 | help | 8 | help |
8 | The Freescale E600 SoCs have 74xx cores. | 9 | The Freescale E600 SoCs have 74xx cores. |
9 | 10 | ||
diff --git a/arch/powerpc/platforms/86xx/gef_gpio.c b/arch/powerpc/platforms/86xx/gef_gpio.c index 4ff7b1e7bbad..2a703365e664 100644 --- a/arch/powerpc/platforms/86xx/gef_gpio.c +++ b/arch/powerpc/platforms/86xx/gef_gpio.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/of_gpio.h> | 27 | #include <linux/of_gpio.h> |
28 | #include <linux/gpio.h> | 28 | #include <linux/gpio.h> |
29 | #include <linux/slab.h> | 29 | #include <linux/slab.h> |
30 | #include <linux/module.h> | ||
30 | 31 | ||
31 | #define GEF_GPIO_DIRECT 0x00 | 32 | #define GEF_GPIO_DIRECT 0x00 |
32 | #define GEF_GPIO_IN 0x04 | 33 | #define GEF_GPIO_IN 0x04 |
diff --git a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c index 74e018ef724b..13fa9a6403e6 100644 --- a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c +++ b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c | |||
@@ -152,10 +152,10 @@ machine_device_initcall(mpc86xx_hpcd, mpc8610_declare_of_platform_devices); | |||
152 | (c2 << AD_COMP_2_SHIFT) | (c1 << AD_COMP_1_SHIFT) | \ | 152 | (c2 << AD_COMP_2_SHIFT) | (c1 << AD_COMP_1_SHIFT) | \ |
153 | (c0 << AD_COMP_0_SHIFT) | (size << AD_PIXEL_S_SHIFT)) | 153 | (c0 << AD_COMP_0_SHIFT) | (size << AD_PIXEL_S_SHIFT)) |
154 | 154 | ||
155 | unsigned int mpc8610hpcd_get_pixel_format(unsigned int bits_per_pixel, | 155 | u32 mpc8610hpcd_get_pixel_format(enum fsl_diu_monitor_port port, |
156 | int monitor_port) | 156 | unsigned int bits_per_pixel) |
157 | { | 157 | { |
158 | static const unsigned long pixelformat[][3] = { | 158 | static const u32 pixelformat[][3] = { |
159 | { | 159 | { |
160 | MAKE_AD(3, 0, 2, 1, 3, 8, 8, 8, 8), | 160 | MAKE_AD(3, 0, 2, 1, 3, 8, 8, 8, 8), |
161 | MAKE_AD(4, 2, 0, 1, 2, 8, 8, 8, 0), | 161 | MAKE_AD(4, 2, 0, 1, 2, 8, 8, 8, 0), |
@@ -170,7 +170,8 @@ unsigned int mpc8610hpcd_get_pixel_format(unsigned int bits_per_pixel, | |||
170 | unsigned int arch_monitor; | 170 | unsigned int arch_monitor; |
171 | 171 | ||
172 | /* The DVI port is mis-wired on revision 1 of this board. */ | 172 | /* The DVI port is mis-wired on revision 1 of this board. */ |
173 | arch_monitor = ((*pixis_arch == 0x01) && (monitor_port == 0))? 0 : 1; | 173 | arch_monitor = |
174 | ((*pixis_arch == 0x01) && (port == FSL_DIU_PORT_DVI)) ? 0 : 1; | ||
174 | 175 | ||
175 | switch (bits_per_pixel) { | 176 | switch (bits_per_pixel) { |
176 | case 32: | 177 | case 32: |
@@ -185,10 +186,11 @@ unsigned int mpc8610hpcd_get_pixel_format(unsigned int bits_per_pixel, | |||
185 | } | 186 | } |
186 | } | 187 | } |
187 | 188 | ||
188 | void mpc8610hpcd_set_gamma_table(int monitor_port, char *gamma_table_base) | 189 | void mpc8610hpcd_set_gamma_table(enum fsl_diu_monitor_port port, |
190 | char *gamma_table_base) | ||
189 | { | 191 | { |
190 | int i; | 192 | int i; |
191 | if (monitor_port == 2) { /* dual link LVDS */ | 193 | if (port == FSL_DIU_PORT_DLVDS) { |
192 | for (i = 0; i < 256*3; i++) | 194 | for (i = 0; i < 256*3; i++) |
193 | gamma_table_base[i] = (gamma_table_base[i] << 2) | | 195 | gamma_table_base[i] = (gamma_table_base[i] << 2) | |
194 | ((gamma_table_base[i] >> 6) & 0x03); | 196 | ((gamma_table_base[i] >> 6) & 0x03); |
@@ -199,17 +201,21 @@ void mpc8610hpcd_set_gamma_table(int monitor_port, char *gamma_table_base) | |||
199 | #define PX_BRDCFG0_DLINK (1 << 4) | 201 | #define PX_BRDCFG0_DLINK (1 << 4) |
200 | #define PX_BRDCFG0_DIU_MASK (PX_BRDCFG0_DVISEL | PX_BRDCFG0_DLINK) | 202 | #define PX_BRDCFG0_DIU_MASK (PX_BRDCFG0_DVISEL | PX_BRDCFG0_DLINK) |
201 | 203 | ||
202 | void mpc8610hpcd_set_monitor_port(int monitor_port) | 204 | void mpc8610hpcd_set_monitor_port(enum fsl_diu_monitor_port port) |
203 | { | 205 | { |
204 | static const u8 bdcfg[] = { | 206 | switch (port) { |
205 | PX_BRDCFG0_DVISEL | PX_BRDCFG0_DLINK, | 207 | case FSL_DIU_PORT_DVI: |
206 | PX_BRDCFG0_DLINK, | ||
207 | 0, | ||
208 | }; | ||
209 | |||
210 | if (monitor_port < 3) | ||
211 | clrsetbits_8(pixis_bdcfg0, PX_BRDCFG0_DIU_MASK, | 208 | clrsetbits_8(pixis_bdcfg0, PX_BRDCFG0_DIU_MASK, |
212 | bdcfg[monitor_port]); | 209 | PX_BRDCFG0_DVISEL | PX_BRDCFG0_DLINK); |
210 | break; | ||
211 | case FSL_DIU_PORT_LVDS: | ||
212 | clrsetbits_8(pixis_bdcfg0, PX_BRDCFG0_DIU_MASK, | ||
213 | PX_BRDCFG0_DLINK); | ||
214 | break; | ||
215 | case FSL_DIU_PORT_DLVDS: | ||
216 | clrbits8(pixis_bdcfg0, PX_BRDCFG0_DIU_MASK); | ||
217 | break; | ||
218 | } | ||
213 | } | 219 | } |
214 | 220 | ||
215 | /** | 221 | /** |
@@ -262,20 +268,10 @@ void mpc8610hpcd_set_pixel_clock(unsigned int pixclock) | |||
262 | iounmap(guts); | 268 | iounmap(guts); |
263 | } | 269 | } |
264 | 270 | ||
265 | ssize_t mpc8610hpcd_show_monitor_port(int monitor_port, char *buf) | 271 | enum fsl_diu_monitor_port |
266 | { | 272 | mpc8610hpcd_valid_monitor_port(enum fsl_diu_monitor_port port) |
267 | return snprintf(buf, PAGE_SIZE, | ||
268 | "%c0 - DVI\n" | ||
269 | "%c1 - Single link LVDS\n" | ||
270 | "%c2 - Dual link LVDS\n", | ||
271 | monitor_port == 0 ? '*' : ' ', | ||
272 | monitor_port == 1 ? '*' : ' ', | ||
273 | monitor_port == 2 ? '*' : ' '); | ||
274 | } | ||
275 | |||
276 | int mpc8610hpcd_set_sysfs_monitor_port(int val) | ||
277 | { | 273 | { |
278 | return val < 3 ? val : 0; | 274 | return port; |
279 | } | 275 | } |
280 | 276 | ||
281 | #endif | 277 | #endif |
@@ -307,8 +303,7 @@ static void __init mpc86xx_hpcd_setup_arch(void) | |||
307 | diu_ops.set_gamma_table = mpc8610hpcd_set_gamma_table; | 303 | diu_ops.set_gamma_table = mpc8610hpcd_set_gamma_table; |
308 | diu_ops.set_monitor_port = mpc8610hpcd_set_monitor_port; | 304 | diu_ops.set_monitor_port = mpc8610hpcd_set_monitor_port; |
309 | diu_ops.set_pixel_clock = mpc8610hpcd_set_pixel_clock; | 305 | diu_ops.set_pixel_clock = mpc8610hpcd_set_pixel_clock; |
310 | diu_ops.show_monitor_port = mpc8610hpcd_show_monitor_port; | 306 | diu_ops.valid_monitor_port = mpc8610hpcd_valid_monitor_port; |
311 | diu_ops.set_sysfs_monitor_port = mpc8610hpcd_set_sysfs_monitor_port; | ||
312 | #endif | 307 | #endif |
313 | 308 | ||
314 | pixis_node = of_find_compatible_node(NULL, NULL, "fsl,fpga-pixis"); | 309 | pixis_node = of_find_compatible_node(NULL, NULL, "fsl,fpga-pixis"); |
diff --git a/arch/powerpc/platforms/8xx/tqm8xx_setup.c b/arch/powerpc/platforms/8xx/tqm8xx_setup.c index b71c650fbb11..528e00ddef31 100644 --- a/arch/powerpc/platforms/8xx/tqm8xx_setup.c +++ b/arch/powerpc/platforms/8xx/tqm8xx_setup.c | |||
@@ -18,7 +18,6 @@ | |||
18 | */ | 18 | */ |
19 | 19 | ||
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/module.h> | ||
22 | #include <linux/param.h> | 21 | #include <linux/param.h> |
23 | #include <linux/string.h> | 22 | #include <linux/string.h> |
24 | #include <linux/ioport.h> | 23 | #include <linux/ioport.h> |
diff --git a/arch/powerpc/platforms/Kconfig b/arch/powerpc/platforms/Kconfig index b9ba86191aed..e4588721ef34 100644 --- a/arch/powerpc/platforms/Kconfig +++ b/arch/powerpc/platforms/Kconfig | |||
@@ -1,5 +1,6 @@ | |||
1 | menu "Platform support" | 1 | menu "Platform support" |
2 | 2 | ||
3 | source "arch/powerpc/platforms/powernv/Kconfig" | ||
3 | source "arch/powerpc/platforms/pseries/Kconfig" | 4 | source "arch/powerpc/platforms/pseries/Kconfig" |
4 | source "arch/powerpc/platforms/iseries/Kconfig" | 5 | source "arch/powerpc/platforms/iseries/Kconfig" |
5 | source "arch/powerpc/platforms/chrp/Kconfig" | 6 | source "arch/powerpc/platforms/chrp/Kconfig" |
@@ -333,16 +334,6 @@ config OF_RTC | |||
333 | 334 | ||
334 | source "arch/powerpc/sysdev/bestcomm/Kconfig" | 335 | source "arch/powerpc/sysdev/bestcomm/Kconfig" |
335 | 336 | ||
336 | config MPC8xxx_GPIO | ||
337 | bool "MPC512x/MPC8xxx GPIO support" | ||
338 | depends on PPC_MPC512x || PPC_MPC831x || PPC_MPC834x || PPC_MPC837x || \ | ||
339 | FSL_SOC_BOOKE || PPC_86xx | ||
340 | select GENERIC_GPIO | ||
341 | select ARCH_REQUIRE_GPIOLIB | ||
342 | help | ||
343 | Say Y here if you're going to use hardware that connects to the | ||
344 | MPC512x/831x/834x/837x/8572/8610 GPIOs. | ||
345 | |||
346 | config SIMPLE_GPIO | 337 | config SIMPLE_GPIO |
347 | bool "Support for simple, memory-mapped GPIO controllers" | 338 | bool "Support for simple, memory-mapped GPIO controllers" |
348 | depends on PPC | 339 | depends on PPC |
@@ -355,7 +346,7 @@ config SIMPLE_GPIO | |||
355 | on-board peripherals. | 346 | on-board peripherals. |
356 | 347 | ||
357 | config MCU_MPC8349EMITX | 348 | config MCU_MPC8349EMITX |
358 | tristate "MPC8349E-mITX MCU driver" | 349 | bool "MPC8349E-mITX MCU driver" |
359 | depends on I2C && PPC_83xx | 350 | depends on I2C && PPC_83xx |
360 | select GENERIC_GPIO | 351 | select GENERIC_GPIO |
361 | select ARCH_REQUIRE_GPIOLIB | 352 | select ARCH_REQUIRE_GPIOLIB |
diff --git a/arch/powerpc/platforms/Kconfig.cputype b/arch/powerpc/platforms/Kconfig.cputype index e06e39589a09..fbecae0fbb49 100644 --- a/arch/powerpc/platforms/Kconfig.cputype +++ b/arch/powerpc/platforms/Kconfig.cputype | |||
@@ -69,6 +69,7 @@ config PPC_BOOK3S_64 | |||
69 | bool "Server processors" | 69 | bool "Server processors" |
70 | select PPC_FPU | 70 | select PPC_FPU |
71 | select PPC_HAVE_PMU_SUPPORT | 71 | select PPC_HAVE_PMU_SUPPORT |
72 | select SYS_SUPPORTS_HUGETLBFS | ||
72 | 73 | ||
73 | config PPC_BOOK3E_64 | 74 | config PPC_BOOK3E_64 |
74 | bool "Embedded processors" | 75 | bool "Embedded processors" |
@@ -173,6 +174,7 @@ config BOOKE | |||
173 | config FSL_BOOKE | 174 | config FSL_BOOKE |
174 | bool | 175 | bool |
175 | depends on (E200 || E500) && PPC32 | 176 | depends on (E200 || E500) && PPC32 |
177 | select SYS_SUPPORTS_HUGETLBFS if PHYS_64BIT | ||
176 | default y | 178 | default y |
177 | 179 | ||
178 | # this is for common code between PPC32 & PPC64 FSL BOOKE | 180 | # this is for common code between PPC32 & PPC64 FSL BOOKE |
@@ -282,21 +284,13 @@ config PPC_MMU_NOHASH | |||
282 | def_bool y | 284 | def_bool y |
283 | depends on !PPC_STD_MMU | 285 | depends on !PPC_STD_MMU |
284 | 286 | ||
285 | config PPC_MMU_NOHASH_32 | ||
286 | def_bool y | ||
287 | depends on PPC_MMU_NOHASH && PPC32 | ||
288 | |||
289 | config PPC_MMU_NOHASH_64 | ||
290 | def_bool y | ||
291 | depends on PPC_MMU_NOHASH && PPC64 | ||
292 | |||
293 | config PPC_BOOK3E_MMU | 287 | config PPC_BOOK3E_MMU |
294 | def_bool y | 288 | def_bool y |
295 | depends on FSL_BOOKE || PPC_BOOK3E | 289 | depends on FSL_BOOKE || PPC_BOOK3E |
296 | 290 | ||
297 | config PPC_MM_SLICES | 291 | config PPC_MM_SLICES |
298 | bool | 292 | bool |
299 | default y if HUGETLB_PAGE || (PPC_STD_MMU_64 && PPC_64K_PAGES) | 293 | default y if (PPC64 && HUGETLB_PAGE) || (PPC_STD_MMU_64 && PPC_64K_PAGES) |
300 | default n | 294 | default n |
301 | 295 | ||
302 | config VIRT_CPU_ACCOUNTING | 296 | config VIRT_CPU_ACCOUNTING |
diff --git a/arch/powerpc/platforms/Makefile b/arch/powerpc/platforms/Makefile index 73e2116cfeed..2635a22bade2 100644 --- a/arch/powerpc/platforms/Makefile +++ b/arch/powerpc/platforms/Makefile | |||
@@ -14,6 +14,7 @@ obj-$(CONFIG_PPC_82xx) += 82xx/ | |||
14 | obj-$(CONFIG_PPC_83xx) += 83xx/ | 14 | obj-$(CONFIG_PPC_83xx) += 83xx/ |
15 | obj-$(CONFIG_FSL_SOC_BOOKE) += 85xx/ | 15 | obj-$(CONFIG_FSL_SOC_BOOKE) += 85xx/ |
16 | obj-$(CONFIG_PPC_86xx) += 86xx/ | 16 | obj-$(CONFIG_PPC_86xx) += 86xx/ |
17 | obj-$(CONFIG_PPC_POWERNV) += powernv/ | ||
17 | obj-$(CONFIG_PPC_PSERIES) += pseries/ | 18 | obj-$(CONFIG_PPC_PSERIES) += pseries/ |
18 | obj-$(CONFIG_PPC_ISERIES) += iseries/ | 19 | obj-$(CONFIG_PPC_ISERIES) += iseries/ |
19 | obj-$(CONFIG_PPC_MAPLE) += maple/ | 20 | obj-$(CONFIG_PPC_MAPLE) += maple/ |
diff --git a/arch/powerpc/platforms/cell/Kconfig b/arch/powerpc/platforms/cell/Kconfig index 67d5009b4e86..2e7ff0c5cf42 100644 --- a/arch/powerpc/platforms/cell/Kconfig +++ b/arch/powerpc/platforms/cell/Kconfig | |||
@@ -17,10 +17,10 @@ config PPC_CELL_NATIVE | |||
17 | select PPC_CELL_COMMON | 17 | select PPC_CELL_COMMON |
18 | select MPIC | 18 | select MPIC |
19 | select PPC_IO_WORKAROUNDS | 19 | select PPC_IO_WORKAROUNDS |
20 | select IBM_NEW_EMAC_EMAC4 | 20 | select IBM_EMAC_EMAC4 |
21 | select IBM_NEW_EMAC_RGMII | 21 | select IBM_EMAC_RGMII |
22 | select IBM_NEW_EMAC_ZMII #test only | 22 | select IBM_EMAC_ZMII #test only |
23 | select IBM_NEW_EMAC_TAH #test only | 23 | select IBM_EMAC_TAH #test only |
24 | default n | 24 | default n |
25 | 25 | ||
26 | config PPC_IBM_CELL_BLADE | 26 | config PPC_IBM_CELL_BLADE |
diff --git a/arch/powerpc/platforms/cell/axon_msi.c b/arch/powerpc/platforms/cell/axon_msi.c index ac06903e136a..40a6e34793b4 100644 --- a/arch/powerpc/platforms/cell/axon_msi.c +++ b/arch/powerpc/platforms/cell/axon_msi.c | |||
@@ -13,6 +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/export.h> | ||
16 | #include <linux/of_platform.h> | 17 | #include <linux/of_platform.h> |
17 | #include <linux/debugfs.h> | 18 | #include <linux/debugfs.h> |
18 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
diff --git a/arch/powerpc/platforms/cell/beat.c b/arch/powerpc/platforms/cell/beat.c index 48c690ea65da..852592b2b712 100644 --- a/arch/powerpc/platforms/cell/beat.c +++ b/arch/powerpc/platforms/cell/beat.c | |||
@@ -18,7 +18,7 @@ | |||
18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/module.h> | 21 | #include <linux/export.h> |
22 | #include <linux/init.h> | 22 | #include <linux/init.h> |
23 | #include <linux/err.h> | 23 | #include <linux/err.h> |
24 | #include <linux/rtc.h> | 24 | #include <linux/rtc.h> |
@@ -230,7 +230,7 @@ static int __init beat_register_event(void) | |||
230 | } | 230 | } |
231 | ev->virq = virq; | 231 | ev->virq = virq; |
232 | 232 | ||
233 | rc = request_irq(virq, ev->handler, IRQF_DISABLED, | 233 | rc = request_irq(virq, ev->handler, 0, |
234 | ev->typecode, NULL); | 234 | ev->typecode, NULL); |
235 | if (rc != 0) { | 235 | if (rc != 0) { |
236 | printk(KERN_ERR "Beat: failed to request virtual IRQ" | 236 | printk(KERN_ERR "Beat: failed to request virtual IRQ" |
diff --git a/arch/powerpc/platforms/cell/beat_spu_priv1.c b/arch/powerpc/platforms/cell/beat_spu_priv1.c index bcc17f7fe8ad..13f52589d3a9 100644 --- a/arch/powerpc/platforms/cell/beat_spu_priv1.c +++ b/arch/powerpc/platforms/cell/beat_spu_priv1.c | |||
@@ -18,8 +18,6 @@ | |||
18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/module.h> | ||
22 | |||
23 | #include <asm/types.h> | 21 | #include <asm/types.h> |
24 | #include <asm/spu.h> | 22 | #include <asm/spu.h> |
25 | #include <asm/spu_priv1.h> | 23 | #include <asm/spu_priv1.h> |
diff --git a/arch/powerpc/platforms/cell/beat_wrapper.h b/arch/powerpc/platforms/cell/beat_wrapper.h index b47dfda48d06..c1109969f242 100644 --- a/arch/powerpc/platforms/cell/beat_wrapper.h +++ b/arch/powerpc/platforms/cell/beat_wrapper.h | |||
@@ -20,6 +20,7 @@ | |||
20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
21 | */ | 21 | */ |
22 | #ifndef BEAT_HCALL | 22 | #ifndef BEAT_HCALL |
23 | #include <linux/string.h> | ||
23 | #include "beat_syscall.h" | 24 | #include "beat_syscall.h" |
24 | 25 | ||
25 | /* defined in hvCall.S */ | 26 | /* defined in hvCall.S */ |
diff --git a/arch/powerpc/platforms/cell/cbe_cpufreq.c b/arch/powerpc/platforms/cell/cbe_cpufreq.c index bfa2c0cb3d1e..d4c39e32f147 100644 --- a/arch/powerpc/platforms/cell/cbe_cpufreq.c +++ b/arch/powerpc/platforms/cell/cbe_cpufreq.c | |||
@@ -21,6 +21,7 @@ | |||
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include <linux/cpufreq.h> | 23 | #include <linux/cpufreq.h> |
24 | #include <linux/module.h> | ||
24 | #include <linux/of_platform.h> | 25 | #include <linux/of_platform.h> |
25 | 26 | ||
26 | #include <asm/machdep.h> | 27 | #include <asm/machdep.h> |
diff --git a/arch/powerpc/platforms/cell/cbe_cpufreq_pmi.c b/arch/powerpc/platforms/cell/cbe_cpufreq_pmi.c index 3233fe84d158..60a07a4f9326 100644 --- a/arch/powerpc/platforms/cell/cbe_cpufreq_pmi.c +++ b/arch/powerpc/platforms/cell/cbe_cpufreq_pmi.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/kernel.h> | 23 | #include <linux/kernel.h> |
24 | #include <linux/types.h> | 24 | #include <linux/types.h> |
25 | #include <linux/timer.h> | 25 | #include <linux/timer.h> |
26 | #include <linux/module.h> | ||
26 | #include <linux/of_platform.h> | 27 | #include <linux/of_platform.h> |
27 | 28 | ||
28 | #include <asm/processor.h> | 29 | #include <asm/processor.h> |
diff --git a/arch/powerpc/platforms/cell/cbe_powerbutton.c b/arch/powerpc/platforms/cell/cbe_powerbutton.c index f75a4daa4ca2..2bb8031303f0 100644 --- a/arch/powerpc/platforms/cell/cbe_powerbutton.c +++ b/arch/powerpc/platforms/cell/cbe_powerbutton.c | |||
@@ -21,6 +21,7 @@ | |||
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include <linux/input.h> | 23 | #include <linux/input.h> |
24 | #include <linux/module.h> | ||
24 | #include <linux/platform_device.h> | 25 | #include <linux/platform_device.h> |
25 | #include <asm/pmi.h> | 26 | #include <asm/pmi.h> |
26 | #include <asm/prom.h> | 27 | #include <asm/prom.h> |
diff --git a/arch/powerpc/platforms/cell/cbe_regs.c b/arch/powerpc/platforms/cell/cbe_regs.c index f3917e7a5b44..1428d583c238 100644 --- a/arch/powerpc/platforms/cell/cbe_regs.c +++ b/arch/powerpc/platforms/cell/cbe_regs.c | |||
@@ -8,7 +8,7 @@ | |||
8 | 8 | ||
9 | #include <linux/percpu.h> | 9 | #include <linux/percpu.h> |
10 | #include <linux/types.h> | 10 | #include <linux/types.h> |
11 | #include <linux/module.h> | 11 | #include <linux/export.h> |
12 | #include <linux/of_device.h> | 12 | #include <linux/of_device.h> |
13 | #include <linux/of_platform.h> | 13 | #include <linux/of_platform.h> |
14 | 14 | ||
diff --git a/arch/powerpc/platforms/cell/celleb_scc_pciex.c b/arch/powerpc/platforms/cell/celleb_scc_pciex.c index ae790ac4a589..14be2bd358b8 100644 --- a/arch/powerpc/platforms/cell/celleb_scc_pciex.c +++ b/arch/powerpc/platforms/cell/celleb_scc_pciex.c | |||
@@ -514,7 +514,7 @@ static __init int celleb_setup_pciex(struct device_node *node, | |||
514 | virq = irq_create_of_mapping(oirq.controller, oirq.specifier, | 514 | virq = irq_create_of_mapping(oirq.controller, oirq.specifier, |
515 | oirq.size); | 515 | oirq.size); |
516 | if (request_irq(virq, pciex_handle_internal_irq, | 516 | if (request_irq(virq, pciex_handle_internal_irq, |
517 | IRQF_DISABLED, "pciex", (void *)phb)) { | 517 | 0, "pciex", (void *)phb)) { |
518 | pr_err("PCIEXC:Failed to request irq\n"); | 518 | pr_err("PCIEXC:Failed to request irq\n"); |
519 | goto error; | 519 | goto error; |
520 | } | 520 | } |
diff --git a/arch/powerpc/platforms/cell/celleb_setup.c b/arch/powerpc/platforms/cell/celleb_setup.c index d58d9bae4b9b..1d5a4d8ddad9 100644 --- a/arch/powerpc/platforms/cell/celleb_setup.c +++ b/arch/powerpc/platforms/cell/celleb_setup.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <linux/cpu.h> | 30 | #include <linux/cpu.h> |
31 | #include <linux/sched.h> | 31 | #include <linux/sched.h> |
32 | #include <linux/kernel.h> | 32 | #include <linux/kernel.h> |
33 | #include <linux/export.h> | ||
33 | #include <linux/mm.h> | 34 | #include <linux/mm.h> |
34 | #include <linux/stddef.h> | 35 | #include <linux/stddef.h> |
35 | #include <linux/unistd.h> | 36 | #include <linux/unistd.h> |
diff --git a/arch/powerpc/platforms/cell/cpufreq_spudemand.c b/arch/powerpc/platforms/cell/cpufreq_spudemand.c index 7f92096fe968..23bc9db4317e 100644 --- a/arch/powerpc/platforms/cell/cpufreq_spudemand.c +++ b/arch/powerpc/platforms/cell/cpufreq_spudemand.c | |||
@@ -22,6 +22,7 @@ | |||
22 | 22 | ||
23 | #include <linux/cpufreq.h> | 23 | #include <linux/cpufreq.h> |
24 | #include <linux/sched.h> | 24 | #include <linux/sched.h> |
25 | #include <linux/module.h> | ||
25 | #include <linux/timer.h> | 26 | #include <linux/timer.h> |
26 | #include <linux/workqueue.h> | 27 | #include <linux/workqueue.h> |
27 | #include <linux/atomic.h> | 28 | #include <linux/atomic.h> |
diff --git a/arch/powerpc/platforms/cell/interrupt.c b/arch/powerpc/platforms/cell/interrupt.c index 3e4eba603e6b..96a433dd2d64 100644 --- a/arch/powerpc/platforms/cell/interrupt.c +++ b/arch/powerpc/platforms/cell/interrupt.c | |||
@@ -31,7 +31,7 @@ | |||
31 | 31 | ||
32 | #include <linux/interrupt.h> | 32 | #include <linux/interrupt.h> |
33 | #include <linux/irq.h> | 33 | #include <linux/irq.h> |
34 | #include <linux/module.h> | 34 | #include <linux/export.h> |
35 | #include <linux/percpu.h> | 35 | #include <linux/percpu.h> |
36 | #include <linux/types.h> | 36 | #include <linux/types.h> |
37 | #include <linux/ioport.h> | 37 | #include <linux/ioport.h> |
diff --git a/arch/powerpc/platforms/cell/iommu.c b/arch/powerpc/platforms/cell/iommu.c index 26a067122a54..592c3d51b817 100644 --- a/arch/powerpc/platforms/cell/iommu.c +++ b/arch/powerpc/platforms/cell/iommu.c | |||
@@ -412,8 +412,7 @@ static void cell_iommu_enable_hardware(struct cbe_iommu *iommu) | |||
412 | IIC_IRQ_IOEX_ATI | (iommu->nid << IIC_IRQ_NODE_SHIFT)); | 412 | IIC_IRQ_IOEX_ATI | (iommu->nid << IIC_IRQ_NODE_SHIFT)); |
413 | BUG_ON(virq == NO_IRQ); | 413 | BUG_ON(virq == NO_IRQ); |
414 | 414 | ||
415 | ret = request_irq(virq, ioc_interrupt, IRQF_DISABLED, | 415 | ret = request_irq(virq, ioc_interrupt, 0, iommu->name, iommu); |
416 | iommu->name, iommu); | ||
417 | BUG_ON(ret); | 416 | BUG_ON(ret); |
418 | 417 | ||
419 | /* set the IOC segment table origin register (and turn on the iommu) */ | 418 | /* set the IOC segment table origin register (and turn on the iommu) */ |
@@ -1159,6 +1158,26 @@ static int __init setup_iommu_fixed(char *str) | |||
1159 | } | 1158 | } |
1160 | __setup("iommu_fixed=", setup_iommu_fixed); | 1159 | __setup("iommu_fixed=", setup_iommu_fixed); |
1161 | 1160 | ||
1161 | static u64 cell_dma_get_required_mask(struct device *dev) | ||
1162 | { | ||
1163 | struct dma_map_ops *dma_ops; | ||
1164 | |||
1165 | if (!dev->dma_mask) | ||
1166 | return 0; | ||
1167 | |||
1168 | if (!iommu_fixed_disabled && | ||
1169 | cell_iommu_get_fixed_address(dev) != OF_BAD_ADDR) | ||
1170 | return DMA_BIT_MASK(64); | ||
1171 | |||
1172 | dma_ops = get_dma_ops(dev); | ||
1173 | if (dma_ops->get_required_mask) | ||
1174 | return dma_ops->get_required_mask(dev); | ||
1175 | |||
1176 | WARN_ONCE(1, "no get_required_mask in %p ops", dma_ops); | ||
1177 | |||
1178 | return DMA_BIT_MASK(64); | ||
1179 | } | ||
1180 | |||
1162 | static int __init cell_iommu_init(void) | 1181 | static int __init cell_iommu_init(void) |
1163 | { | 1182 | { |
1164 | struct device_node *np; | 1183 | struct device_node *np; |
@@ -1175,6 +1194,7 @@ static int __init cell_iommu_init(void) | |||
1175 | 1194 | ||
1176 | /* Setup various ppc_md. callbacks */ | 1195 | /* Setup various ppc_md. callbacks */ |
1177 | ppc_md.pci_dma_dev_setup = cell_pci_dma_dev_setup; | 1196 | ppc_md.pci_dma_dev_setup = cell_pci_dma_dev_setup; |
1197 | ppc_md.dma_get_required_mask = cell_dma_get_required_mask; | ||
1178 | ppc_md.tce_build = tce_build_cell; | 1198 | ppc_md.tce_build = tce_build_cell; |
1179 | ppc_md.tce_free = tce_free_cell; | 1199 | ppc_md.tce_free = tce_free_cell; |
1180 | 1200 | ||
diff --git a/arch/powerpc/platforms/cell/pmu.c b/arch/powerpc/platforms/cell/pmu.c index 69ed0d7f1646..59c1a1694104 100644 --- a/arch/powerpc/platforms/cell/pmu.c +++ b/arch/powerpc/platforms/cell/pmu.c | |||
@@ -24,6 +24,7 @@ | |||
24 | 24 | ||
25 | #include <linux/interrupt.h> | 25 | #include <linux/interrupt.h> |
26 | #include <linux/types.h> | 26 | #include <linux/types.h> |
27 | #include <linux/export.h> | ||
27 | #include <asm/io.h> | 28 | #include <asm/io.h> |
28 | #include <asm/irq_regs.h> | 29 | #include <asm/irq_regs.h> |
29 | #include <asm/machdep.h> | 30 | #include <asm/machdep.h> |
@@ -391,7 +392,7 @@ static int __init cbe_init_pm_irq(void) | |||
391 | } | 392 | } |
392 | 393 | ||
393 | rc = request_irq(irq, cbe_pm_irq, | 394 | rc = request_irq(irq, cbe_pm_irq, |
394 | IRQF_DISABLED, "cbe-pmu-0", NULL); | 395 | 0, "cbe-pmu-0", NULL); |
395 | if (rc) { | 396 | if (rc) { |
396 | printk("ERROR: Request for irq on node %d failed\n", | 397 | printk("ERROR: Request for irq on node %d failed\n", |
397 | node); | 398 | node); |
diff --git a/arch/powerpc/platforms/cell/qpace_setup.c b/arch/powerpc/platforms/cell/qpace_setup.c index 51e290126bc1..7f9b6742f8b6 100644 --- a/arch/powerpc/platforms/cell/qpace_setup.c +++ b/arch/powerpc/platforms/cell/qpace_setup.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/sched.h> | 17 | #include <linux/sched.h> |
18 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
19 | #include <linux/init.h> | 19 | #include <linux/init.h> |
20 | #include <linux/export.h> | ||
20 | #include <linux/delay.h> | 21 | #include <linux/delay.h> |
21 | #include <linux/irq.h> | 22 | #include <linux/irq.h> |
22 | #include <linux/console.h> | 23 | #include <linux/console.h> |
diff --git a/arch/powerpc/platforms/cell/setup.c b/arch/powerpc/platforms/cell/setup.c index c73cf4c43fc2..0fc9b7256126 100644 --- a/arch/powerpc/platforms/cell/setup.c +++ b/arch/powerpc/platforms/cell/setup.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
19 | #include <linux/mm.h> | 19 | #include <linux/mm.h> |
20 | #include <linux/stddef.h> | 20 | #include <linux/stddef.h> |
21 | #include <linux/export.h> | ||
21 | #include <linux/unistd.h> | 22 | #include <linux/unistd.h> |
22 | #include <linux/user.h> | 23 | #include <linux/user.h> |
23 | #include <linux/reboot.h> | 24 | #include <linux/reboot.h> |
diff --git a/arch/powerpc/platforms/cell/smp.c b/arch/powerpc/platforms/cell/smp.c index f2e1dfe4bf31..f5c5c762d5a3 100644 --- a/arch/powerpc/platforms/cell/smp.c +++ b/arch/powerpc/platforms/cell/smp.c | |||
@@ -15,7 +15,6 @@ | |||
15 | #undef DEBUG | 15 | #undef DEBUG |
16 | 16 | ||
17 | #include <linux/kernel.h> | 17 | #include <linux/kernel.h> |
18 | #include <linux/module.h> | ||
19 | #include <linux/sched.h> | 18 | #include <linux/sched.h> |
20 | #include <linux/smp.h> | 19 | #include <linux/smp.h> |
21 | #include <linux/interrupt.h> | 20 | #include <linux/interrupt.h> |
diff --git a/arch/powerpc/platforms/cell/spu_base.c b/arch/powerpc/platforms/cell/spu_base.c index 3675da73623f..e94d3ecdd8bb 100644 --- a/arch/powerpc/platforms/cell/spu_base.c +++ b/arch/powerpc/platforms/cell/spu_base.c | |||
@@ -442,8 +442,7 @@ static int spu_request_irqs(struct spu *spu) | |||
442 | snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0", | 442 | snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0", |
443 | spu->number); | 443 | spu->number); |
444 | ret = request_irq(spu->irqs[0], spu_irq_class_0, | 444 | ret = request_irq(spu->irqs[0], spu_irq_class_0, |
445 | IRQF_DISABLED, | 445 | 0, spu->irq_c0, spu); |
446 | spu->irq_c0, spu); | ||
447 | if (ret) | 446 | if (ret) |
448 | goto bail0; | 447 | goto bail0; |
449 | } | 448 | } |
@@ -451,8 +450,7 @@ static int spu_request_irqs(struct spu *spu) | |||
451 | snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1", | 450 | snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1", |
452 | spu->number); | 451 | spu->number); |
453 | ret = request_irq(spu->irqs[1], spu_irq_class_1, | 452 | ret = request_irq(spu->irqs[1], spu_irq_class_1, |
454 | IRQF_DISABLED, | 453 | 0, spu->irq_c1, spu); |
455 | spu->irq_c1, spu); | ||
456 | if (ret) | 454 | if (ret) |
457 | goto bail1; | 455 | goto bail1; |
458 | } | 456 | } |
@@ -460,8 +458,7 @@ static int spu_request_irqs(struct spu *spu) | |||
460 | snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2", | 458 | snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2", |
461 | spu->number); | 459 | spu->number); |
462 | ret = request_irq(spu->irqs[2], spu_irq_class_2, | 460 | ret = request_irq(spu->irqs[2], spu_irq_class_2, |
463 | IRQF_DISABLED, | 461 | 0, spu->irq_c2, spu); |
464 | spu->irq_c2, spu); | ||
465 | if (ret) | 462 | if (ret) |
466 | goto bail2; | 463 | goto bail2; |
467 | } | 464 | } |
diff --git a/arch/powerpc/platforms/cell/spu_callbacks.c b/arch/powerpc/platforms/cell/spu_callbacks.c index fec1495e6b12..75d613313f10 100644 --- a/arch/powerpc/platforms/cell/spu_callbacks.c +++ b/arch/powerpc/platforms/cell/spu_callbacks.c | |||
@@ -5,7 +5,7 @@ | |||
5 | #undef DEBUG | 5 | #undef DEBUG |
6 | 6 | ||
7 | #include <linux/kallsyms.h> | 7 | #include <linux/kallsyms.h> |
8 | #include <linux/module.h> | 8 | #include <linux/export.h> |
9 | #include <linux/syscalls.h> | 9 | #include <linux/syscalls.h> |
10 | 10 | ||
11 | #include <asm/spu.h> | 11 | #include <asm/spu.h> |
diff --git a/arch/powerpc/platforms/cell/spu_fault.c b/arch/powerpc/platforms/cell/spu_fault.c index d06ba87f1a19..641e7273d75a 100644 --- a/arch/powerpc/platforms/cell/spu_fault.c +++ b/arch/powerpc/platforms/cell/spu_fault.c | |||
@@ -22,7 +22,7 @@ | |||
22 | */ | 22 | */ |
23 | #include <linux/sched.h> | 23 | #include <linux/sched.h> |
24 | #include <linux/mm.h> | 24 | #include <linux/mm.h> |
25 | #include <linux/module.h> | 25 | #include <linux/export.h> |
26 | 26 | ||
27 | #include <asm/spu.h> | 27 | #include <asm/spu.h> |
28 | #include <asm/spu_csa.h> | 28 | #include <asm/spu_csa.h> |
diff --git a/arch/powerpc/platforms/cell/spu_manage.c b/arch/powerpc/platforms/cell/spu_manage.c index 4e5c91489c02..2bb6977c0a5a 100644 --- a/arch/powerpc/platforms/cell/spu_manage.c +++ b/arch/powerpc/platforms/cell/spu_manage.c | |||
@@ -21,7 +21,7 @@ | |||
21 | 21 | ||
22 | #include <linux/interrupt.h> | 22 | #include <linux/interrupt.h> |
23 | #include <linux/list.h> | 23 | #include <linux/list.h> |
24 | #include <linux/module.h> | 24 | #include <linux/export.h> |
25 | #include <linux/ptrace.h> | 25 | #include <linux/ptrace.h> |
26 | #include <linux/wait.h> | 26 | #include <linux/wait.h> |
27 | #include <linux/mm.h> | 27 | #include <linux/mm.h> |
diff --git a/arch/powerpc/platforms/cell/spu_notify.c b/arch/powerpc/platforms/cell/spu_notify.c index 34d156959f39..afdf857c318f 100644 --- a/arch/powerpc/platforms/cell/spu_notify.c +++ b/arch/powerpc/platforms/cell/spu_notify.c | |||
@@ -21,7 +21,8 @@ | |||
21 | 21 | ||
22 | #undef DEBUG | 22 | #undef DEBUG |
23 | 23 | ||
24 | #include <linux/module.h> | 24 | #include <linux/export.h> |
25 | #include <linux/notifier.h> | ||
25 | #include <asm/spu.h> | 26 | #include <asm/spu.h> |
26 | #include "spufs/spufs.h" | 27 | #include "spufs/spufs.h" |
27 | 28 | ||
diff --git a/arch/powerpc/platforms/cell/spu_priv1_mmio.c b/arch/powerpc/platforms/cell/spu_priv1_mmio.c index 121aec353f26..66d33724f16e 100644 --- a/arch/powerpc/platforms/cell/spu_priv1_mmio.c +++ b/arch/powerpc/platforms/cell/spu_priv1_mmio.c | |||
@@ -20,7 +20,6 @@ | |||
20 | 20 | ||
21 | #include <linux/interrupt.h> | 21 | #include <linux/interrupt.h> |
22 | #include <linux/list.h> | 22 | #include <linux/list.h> |
23 | #include <linux/module.h> | ||
24 | #include <linux/ptrace.h> | 23 | #include <linux/ptrace.h> |
25 | #include <linux/wait.h> | 24 | #include <linux/wait.h> |
26 | #include <linux/mm.h> | 25 | #include <linux/mm.h> |
diff --git a/arch/powerpc/platforms/cell/spufs/backing_ops.c b/arch/powerpc/platforms/cell/spufs/backing_ops.c index 64eb15b22040..6e8a9ef8590e 100644 --- a/arch/powerpc/platforms/cell/spufs/backing_ops.c +++ b/arch/powerpc/platforms/cell/spufs/backing_ops.c | |||
@@ -21,7 +21,6 @@ | |||
21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <linux/module.h> | ||
25 | #include <linux/errno.h> | 24 | #include <linux/errno.h> |
26 | #include <linux/sched.h> | 25 | #include <linux/sched.h> |
27 | #include <linux/kernel.h> | 26 | #include <linux/kernel.h> |
diff --git a/arch/powerpc/platforms/cell/spufs/context.c b/arch/powerpc/platforms/cell/spufs/context.c index bf4d41d8fa14..9c6790d17eda 100644 --- a/arch/powerpc/platforms/cell/spufs/context.c +++ b/arch/powerpc/platforms/cell/spufs/context.c | |||
@@ -22,9 +22,9 @@ | |||
22 | 22 | ||
23 | #include <linux/fs.h> | 23 | #include <linux/fs.h> |
24 | #include <linux/mm.h> | 24 | #include <linux/mm.h> |
25 | #include <linux/module.h> | ||
26 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
27 | #include <linux/atomic.h> | 26 | #include <linux/atomic.h> |
27 | #include <linux/sched.h> | ||
28 | #include <asm/spu.h> | 28 | #include <asm/spu.h> |
29 | #include <asm/spu_csa.h> | 29 | #include <asm/spu_csa.h> |
30 | #include "spufs.h" | 30 | #include "spufs.h" |
diff --git a/arch/powerpc/platforms/cell/spufs/coredump.c b/arch/powerpc/platforms/cell/spufs/coredump.c index 6cf3ec628527..03c5fce2a5b3 100644 --- a/arch/powerpc/platforms/cell/spufs/coredump.c +++ b/arch/powerpc/platforms/cell/spufs/coredump.c | |||
@@ -26,7 +26,6 @@ | |||
26 | #include <linux/fs.h> | 26 | #include <linux/fs.h> |
27 | #include <linux/gfp.h> | 27 | #include <linux/gfp.h> |
28 | #include <linux/list.h> | 28 | #include <linux/list.h> |
29 | #include <linux/module.h> | ||
30 | #include <linux/syscalls.h> | 29 | #include <linux/syscalls.h> |
31 | 30 | ||
32 | #include <asm/uaccess.h> | 31 | #include <asm/uaccess.h> |
diff --git a/arch/powerpc/platforms/cell/spufs/fault.c b/arch/powerpc/platforms/cell/spufs/fault.c index a4dd3ae7223a..8cb6260cc80f 100644 --- a/arch/powerpc/platforms/cell/spufs/fault.c +++ b/arch/powerpc/platforms/cell/spufs/fault.c | |||
@@ -21,7 +21,6 @@ | |||
21 | */ | 21 | */ |
22 | #include <linux/sched.h> | 22 | #include <linux/sched.h> |
23 | #include <linux/mm.h> | 23 | #include <linux/mm.h> |
24 | #include <linux/module.h> | ||
25 | 24 | ||
26 | #include <asm/spu.h> | 25 | #include <asm/spu.h> |
27 | #include <asm/spu_csa.h> | 26 | #include <asm/spu_csa.h> |
diff --git a/arch/powerpc/platforms/cell/spufs/file.c b/arch/powerpc/platforms/cell/spufs/file.c index fb59c46e9e9e..0cfece4cf6ef 100644 --- a/arch/powerpc/platforms/cell/spufs/file.c +++ b/arch/powerpc/platforms/cell/spufs/file.c | |||
@@ -24,7 +24,7 @@ | |||
24 | 24 | ||
25 | #include <linux/fs.h> | 25 | #include <linux/fs.h> |
26 | #include <linux/ioctl.h> | 26 | #include <linux/ioctl.h> |
27 | #include <linux/module.h> | 27 | #include <linux/export.h> |
28 | #include <linux/pagemap.h> | 28 | #include <linux/pagemap.h> |
29 | #include <linux/poll.h> | 29 | #include <linux/poll.h> |
30 | #include <linux/ptrace.h> | 30 | #include <linux/ptrace.h> |
diff --git a/arch/powerpc/platforms/cell/spufs/hw_ops.c b/arch/powerpc/platforms/cell/spufs/hw_ops.c index 64f8540b832c..8655c4cbefc2 100644 --- a/arch/powerpc/platforms/cell/spufs/hw_ops.c +++ b/arch/powerpc/platforms/cell/spufs/hw_ops.c | |||
@@ -18,7 +18,6 @@ | |||
18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/module.h> | ||
22 | #include <linux/errno.h> | 21 | #include <linux/errno.h> |
23 | #include <linux/sched.h> | 22 | #include <linux/sched.h> |
24 | #include <linux/kernel.h> | 23 | #include <linux/kernel.h> |
diff --git a/arch/powerpc/platforms/cell/spufs/sched.c b/arch/powerpc/platforms/cell/spufs/sched.c index 32cb4e66d2cd..965d381abd75 100644 --- a/arch/powerpc/platforms/cell/spufs/sched.c +++ b/arch/powerpc/platforms/cell/spufs/sched.c | |||
@@ -22,7 +22,6 @@ | |||
22 | 22 | ||
23 | #undef DEBUG | 23 | #undef DEBUG |
24 | 24 | ||
25 | #include <linux/module.h> | ||
26 | #include <linux/errno.h> | 25 | #include <linux/errno.h> |
27 | #include <linux/sched.h> | 26 | #include <linux/sched.h> |
28 | #include <linux/kernel.h> | 27 | #include <linux/kernel.h> |
diff --git a/arch/powerpc/platforms/cell/spufs/switch.c b/arch/powerpc/platforms/cell/spufs/switch.c index 3df9a36eb2f5..dde35551e744 100644 --- a/arch/powerpc/platforms/cell/spufs/switch.c +++ b/arch/powerpc/platforms/cell/spufs/switch.c | |||
@@ -32,7 +32,7 @@ | |||
32 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 32 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
33 | */ | 33 | */ |
34 | 34 | ||
35 | #include <linux/module.h> | 35 | #include <linux/export.h> |
36 | #include <linux/errno.h> | 36 | #include <linux/errno.h> |
37 | #include <linux/hardirq.h> | 37 | #include <linux/hardirq.h> |
38 | #include <linux/sched.h> | 38 | #include <linux/sched.h> |
diff --git a/arch/powerpc/platforms/cell/spufs/syscalls.c b/arch/powerpc/platforms/cell/spufs/syscalls.c index 609e016e92d0..71a5b5207266 100644 --- a/arch/powerpc/platforms/cell/spufs/syscalls.c +++ b/arch/powerpc/platforms/cell/spufs/syscalls.c | |||
@@ -1,6 +1,6 @@ | |||
1 | #include <linux/file.h> | 1 | #include <linux/file.h> |
2 | #include <linux/fs.h> | 2 | #include <linux/fs.h> |
3 | #include <linux/module.h> | 3 | #include <linux/export.h> |
4 | #include <linux/mount.h> | 4 | #include <linux/mount.h> |
5 | #include <linux/namei.h> | 5 | #include <linux/namei.h> |
6 | #include <linux/slab.h> | 6 | #include <linux/slab.h> |
diff --git a/arch/powerpc/platforms/embedded6xx/Kconfig b/arch/powerpc/platforms/embedded6xx/Kconfig index 524d971a1478..5a8f50a9afa7 100644 --- a/arch/powerpc/platforms/embedded6xx/Kconfig +++ b/arch/powerpc/platforms/embedded6xx/Kconfig | |||
@@ -87,10 +87,6 @@ config MV64X60 | |||
87 | config MPC10X_OPENPIC | 87 | config MPC10X_OPENPIC |
88 | bool | 88 | bool |
89 | 89 | ||
90 | config MPC10X_STORE_GATHERING | ||
91 | bool "Enable MPC10x store gathering" | ||
92 | depends on MPC10X_BRIDGE | ||
93 | |||
94 | config GAMECUBE_COMMON | 90 | config GAMECUBE_COMMON |
95 | bool | 91 | bool |
96 | 92 | ||
diff --git a/arch/powerpc/platforms/embedded6xx/holly.c b/arch/powerpc/platforms/embedded6xx/holly.c index 487bda0d18d8..2e9bcf6444c8 100644 --- a/arch/powerpc/platforms/embedded6xx/holly.c +++ b/arch/powerpc/platforms/embedded6xx/holly.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <linux/tty.h> | 26 | #include <linux/tty.h> |
27 | #include <linux/serial_core.h> | 27 | #include <linux/serial_core.h> |
28 | #include <linux/of_platform.h> | 28 | #include <linux/of_platform.h> |
29 | #include <linux/module.h> | ||
29 | 30 | ||
30 | #include <asm/system.h> | 31 | #include <asm/system.h> |
31 | #include <asm/time.h> | 32 | #include <asm/time.h> |
diff --git a/arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c b/arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c index 1cb907c94359..f8f33e16c6b6 100644 --- a/arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c +++ b/arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/pci.h> | 23 | #include <linux/pci.h> |
24 | #include <linux/kdev_t.h> | 24 | #include <linux/kdev_t.h> |
25 | #include <linux/console.h> | 25 | #include <linux/console.h> |
26 | #include <linux/module.h> | ||
26 | #include <linux/delay.h> | 27 | #include <linux/delay.h> |
27 | #include <linux/irq.h> | 28 | #include <linux/irq.h> |
28 | #include <linux/seq_file.h> | 29 | #include <linux/seq_file.h> |
diff --git a/arch/powerpc/platforms/iseries/hvlpconfig.c b/arch/powerpc/platforms/iseries/hvlpconfig.c index f0475f0b1853..f62a0c5fa670 100644 --- a/arch/powerpc/platforms/iseries/hvlpconfig.c +++ b/arch/powerpc/platforms/iseries/hvlpconfig.c | |||
@@ -16,7 +16,7 @@ | |||
16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include <linux/module.h> | 19 | #include <linux/export.h> |
20 | #include <asm/iseries/hv_lp_config.h> | 20 | #include <asm/iseries/hv_lp_config.h> |
21 | #include "it_lp_naca.h" | 21 | #include "it_lp_naca.h" |
22 | 22 | ||
diff --git a/arch/powerpc/platforms/iseries/iommu.c b/arch/powerpc/platforms/iseries/iommu.c index d8b76335bd13..2f3d9110248c 100644 --- a/arch/powerpc/platforms/iseries/iommu.c +++ b/arch/powerpc/platforms/iseries/iommu.c | |||
@@ -28,7 +28,7 @@ | |||
28 | #include <linux/dma-mapping.h> | 28 | #include <linux/dma-mapping.h> |
29 | #include <linux/list.h> | 29 | #include <linux/list.h> |
30 | #include <linux/pci.h> | 30 | #include <linux/pci.h> |
31 | #include <linux/module.h> | 31 | #include <linux/export.h> |
32 | #include <linux/slab.h> | 32 | #include <linux/slab.h> |
33 | 33 | ||
34 | #include <asm/iommu.h> | 34 | #include <asm/iommu.h> |
diff --git a/arch/powerpc/platforms/iseries/ksyms.c b/arch/powerpc/platforms/iseries/ksyms.c index 2430848b98e7..997e234fb8b7 100644 --- a/arch/powerpc/platforms/iseries/ksyms.c +++ b/arch/powerpc/platforms/iseries/ksyms.c | |||
@@ -6,7 +6,7 @@ | |||
6 | * as published by the Free Software Foundation; either version | 6 | * as published by the Free Software Foundation; either version |
7 | * 2 of the License, or (at your option) any later version. | 7 | * 2 of the License, or (at your option) any later version. |
8 | */ | 8 | */ |
9 | #include <linux/module.h> | 9 | #include <linux/export.h> |
10 | 10 | ||
11 | #include <asm/hw_irq.h> | 11 | #include <asm/hw_irq.h> |
12 | #include <asm/iseries/hv_call_sc.h> | 12 | #include <asm/iseries/hv_call_sc.h> |
diff --git a/arch/powerpc/platforms/iseries/lpardata.c b/arch/powerpc/platforms/iseries/lpardata.c index 98bd2d37038a..00e0ec813a1c 100644 --- a/arch/powerpc/platforms/iseries/lpardata.c +++ b/arch/powerpc/platforms/iseries/lpardata.c | |||
@@ -8,7 +8,6 @@ | |||
8 | */ | 8 | */ |
9 | #include <linux/types.h> | 9 | #include <linux/types.h> |
10 | #include <linux/threads.h> | 10 | #include <linux/threads.h> |
11 | #include <linux/module.h> | ||
12 | #include <linux/bitops.h> | 11 | #include <linux/bitops.h> |
13 | #include <asm/processor.h> | 12 | #include <asm/processor.h> |
14 | #include <asm/ptrace.h> | 13 | #include <asm/ptrace.h> |
diff --git a/arch/powerpc/platforms/iseries/lpevents.c b/arch/powerpc/platforms/iseries/lpevents.c index b0f8a857ec02..202e22798d30 100644 --- a/arch/powerpc/platforms/iseries/lpevents.c +++ b/arch/powerpc/platforms/iseries/lpevents.c | |||
@@ -13,7 +13,7 @@ | |||
13 | #include <linux/bootmem.h> | 13 | #include <linux/bootmem.h> |
14 | #include <linux/seq_file.h> | 14 | #include <linux/seq_file.h> |
15 | #include <linux/proc_fs.h> | 15 | #include <linux/proc_fs.h> |
16 | #include <linux/module.h> | 16 | #include <linux/export.h> |
17 | 17 | ||
18 | #include <asm/system.h> | 18 | #include <asm/system.h> |
19 | #include <asm/paca.h> | 19 | #include <asm/paca.h> |
diff --git a/arch/powerpc/platforms/iseries/mf.c b/arch/powerpc/platforms/iseries/mf.c index 62dabe3c2bfa..254c1fc3d8dd 100644 --- a/arch/powerpc/platforms/iseries/mf.c +++ b/arch/powerpc/platforms/iseries/mf.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <linux/init.h> | 30 | #include <linux/init.h> |
31 | #include <linux/completion.h> | 31 | #include <linux/completion.h> |
32 | #include <linux/delay.h> | 32 | #include <linux/delay.h> |
33 | #include <linux/export.h> | ||
33 | #include <linux/proc_fs.h> | 34 | #include <linux/proc_fs.h> |
34 | #include <linux/dma-mapping.h> | 35 | #include <linux/dma-mapping.h> |
35 | #include <linux/bcd.h> | 36 | #include <linux/bcd.h> |
diff --git a/arch/powerpc/platforms/iseries/pci.c b/arch/powerpc/platforms/iseries/pci.c index ab3962b0d246..c75412884625 100644 --- a/arch/powerpc/platforms/iseries/pci.c +++ b/arch/powerpc/platforms/iseries/pci.c | |||
@@ -29,7 +29,6 @@ | |||
29 | #include <linux/string.h> | 29 | #include <linux/string.h> |
30 | #include <linux/slab.h> | 30 | #include <linux/slab.h> |
31 | #include <linux/init.h> | 31 | #include <linux/init.h> |
32 | #include <linux/module.h> | ||
33 | #include <linux/pci.h> | 32 | #include <linux/pci.h> |
34 | #include <linux/of.h> | 33 | #include <linux/of.h> |
35 | #include <linux/ratelimit.h> | 34 | #include <linux/ratelimit.h> |
diff --git a/arch/powerpc/platforms/iseries/setup.c b/arch/powerpc/platforms/iseries/setup.c index c25a0815c26b..ea0acbd8966d 100644 --- a/arch/powerpc/platforms/iseries/setup.c +++ b/arch/powerpc/platforms/iseries/setup.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/smp.h> | 21 | #include <linux/smp.h> |
22 | #include <linux/param.h> | 22 | #include <linux/param.h> |
23 | #include <linux/string.h> | 23 | #include <linux/string.h> |
24 | #include <linux/export.h> | ||
24 | #include <linux/seq_file.h> | 25 | #include <linux/seq_file.h> |
25 | #include <linux/kdev_t.h> | 26 | #include <linux/kdev_t.h> |
26 | #include <linux/kexec.h> | 27 | #include <linux/kexec.h> |
diff --git a/arch/powerpc/platforms/iseries/smp.c b/arch/powerpc/platforms/iseries/smp.c index 8bda9be06fa0..7e2a5515ed76 100644 --- a/arch/powerpc/platforms/iseries/smp.c +++ b/arch/powerpc/platforms/iseries/smp.c | |||
@@ -15,7 +15,6 @@ | |||
15 | #undef DEBUG | 15 | #undef DEBUG |
16 | 16 | ||
17 | #include <linux/kernel.h> | 17 | #include <linux/kernel.h> |
18 | #include <linux/module.h> | ||
19 | #include <linux/sched.h> | 18 | #include <linux/sched.h> |
20 | #include <linux/smp.h> | 19 | #include <linux/smp.h> |
21 | #include <linux/interrupt.h> | 20 | #include <linux/interrupt.h> |
diff --git a/arch/powerpc/platforms/iseries/vio.c b/arch/powerpc/platforms/iseries/vio.c index b6db7cef83b4..04be62d368a6 100644 --- a/arch/powerpc/platforms/iseries/vio.c +++ b/arch/powerpc/platforms/iseries/vio.c | |||
@@ -25,7 +25,7 @@ | |||
25 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
26 | #include <linux/completion.h> | 26 | #include <linux/completion.h> |
27 | #include <linux/proc_fs.h> | 27 | #include <linux/proc_fs.h> |
28 | #include <linux/module.h> | 28 | #include <linux/export.h> |
29 | 29 | ||
30 | #include <asm/firmware.h> | 30 | #include <asm/firmware.h> |
31 | #include <asm/vio.h> | 31 | #include <asm/vio.h> |
diff --git a/arch/powerpc/platforms/iseries/viopath.c b/arch/powerpc/platforms/iseries/viopath.c index 2376069cdc14..40dad0840eb3 100644 --- a/arch/powerpc/platforms/iseries/viopath.c +++ b/arch/powerpc/platforms/iseries/viopath.c | |||
@@ -27,7 +27,7 @@ | |||
27 | * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 27 | * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
28 | * | 28 | * |
29 | */ | 29 | */ |
30 | #include <linux/module.h> | 30 | #include <linux/export.h> |
31 | #include <linux/kernel.h> | 31 | #include <linux/kernel.h> |
32 | #include <linux/slab.h> | 32 | #include <linux/slab.h> |
33 | #include <linux/errno.h> | 33 | #include <linux/errno.h> |
diff --git a/arch/powerpc/platforms/maple/setup.c b/arch/powerpc/platforms/maple/setup.c index 5b3388b9f911..4c372047c94e 100644 --- a/arch/powerpc/platforms/maple/setup.c +++ b/arch/powerpc/platforms/maple/setup.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/errno.h> | 17 | #include <linux/errno.h> |
18 | #include <linux/sched.h> | 18 | #include <linux/sched.h> |
19 | #include <linux/kernel.h> | 19 | #include <linux/kernel.h> |
20 | #include <linux/export.h> | ||
20 | #include <linux/mm.h> | 21 | #include <linux/mm.h> |
21 | #include <linux/stddef.h> | 22 | #include <linux/stddef.h> |
22 | #include <linux/unistd.h> | 23 | #include <linux/unistd.h> |
diff --git a/arch/powerpc/platforms/pasemi/cpufreq.c b/arch/powerpc/platforms/pasemi/cpufreq.c index c16537bc0c6e..95d00173029f 100644 --- a/arch/powerpc/platforms/pasemi/cpufreq.c +++ b/arch/powerpc/platforms/pasemi/cpufreq.c | |||
@@ -27,6 +27,7 @@ | |||
27 | 27 | ||
28 | #include <linux/cpufreq.h> | 28 | #include <linux/cpufreq.h> |
29 | #include <linux/timer.h> | 29 | #include <linux/timer.h> |
30 | #include <linux/module.h> | ||
30 | 31 | ||
31 | #include <asm/hw_irq.h> | 32 | #include <asm/hw_irq.h> |
32 | #include <asm/io.h> | 33 | #include <asm/io.h> |
diff --git a/arch/powerpc/platforms/pasemi/dma_lib.c b/arch/powerpc/platforms/pasemi/dma_lib.c index 756123bf06ac..f3defd8a2806 100644 --- a/arch/powerpc/platforms/pasemi/dma_lib.c +++ b/arch/powerpc/platforms/pasemi/dma_lib.c | |||
@@ -19,10 +19,11 @@ | |||
19 | 19 | ||
20 | #include <linux/kernel.h> | 20 | #include <linux/kernel.h> |
21 | #include <linux/init.h> | 21 | #include <linux/init.h> |
22 | #include <linux/module.h> | 22 | #include <linux/export.h> |
23 | #include <linux/pci.h> | 23 | #include <linux/pci.h> |
24 | #include <linux/slab.h> | 24 | #include <linux/slab.h> |
25 | #include <linux/of.h> | 25 | #include <linux/of.h> |
26 | #include <linux/sched.h> | ||
26 | 27 | ||
27 | #include <asm/pasemi_dma.h> | 28 | #include <asm/pasemi_dma.h> |
28 | 29 | ||
diff --git a/arch/powerpc/platforms/pasemi/setup.c b/arch/powerpc/platforms/pasemi/setup.c index 7c858e6f843c..6f3558210554 100644 --- a/arch/powerpc/platforms/pasemi/setup.c +++ b/arch/powerpc/platforms/pasemi/setup.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <linux/kernel.h> | 26 | #include <linux/kernel.h> |
27 | #include <linux/delay.h> | 27 | #include <linux/delay.h> |
28 | #include <linux/console.h> | 28 | #include <linux/console.h> |
29 | #include <linux/export.h> | ||
29 | #include <linux/pci.h> | 30 | #include <linux/pci.h> |
30 | #include <linux/of_platform.h> | 31 | #include <linux/of_platform.h> |
31 | #include <linux/gfp.h> | 32 | #include <linux/gfp.h> |
diff --git a/arch/powerpc/platforms/powermac/backlight.c b/arch/powerpc/platforms/powermac/backlight.c index c2f3e861f5ea..a00096b1c713 100644 --- a/arch/powerpc/platforms/powermac/backlight.c +++ b/arch/powerpc/platforms/powermac/backlight.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/adb.h> | 13 | #include <linux/adb.h> |
14 | #include <linux/pmu.h> | 14 | #include <linux/pmu.h> |
15 | #include <linux/atomic.h> | 15 | #include <linux/atomic.h> |
16 | #include <linux/export.h> | ||
16 | #include <asm/prom.h> | 17 | #include <asm/prom.h> |
17 | #include <asm/backlight.h> | 18 | #include <asm/backlight.h> |
18 | 19 | ||
diff --git a/arch/powerpc/platforms/powermac/feature.c b/arch/powerpc/platforms/powermac/feature.c index df423993f175..63d82bbc05e9 100644 --- a/arch/powerpc/platforms/powermac/feature.c +++ b/arch/powerpc/platforms/powermac/feature.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/adb.h> | 27 | #include <linux/adb.h> |
28 | #include <linux/pmu.h> | 28 | #include <linux/pmu.h> |
29 | #include <linux/ioport.h> | 29 | #include <linux/ioport.h> |
30 | #include <linux/export.h> | ||
30 | #include <linux/pci.h> | 31 | #include <linux/pci.h> |
31 | #include <asm/sections.h> | 32 | #include <asm/sections.h> |
32 | #include <asm/errno.h> | 33 | #include <asm/errno.h> |
diff --git a/arch/powerpc/platforms/powermac/low_i2c.c b/arch/powerpc/platforms/powermac/low_i2c.c index e9c8a607268e..996c5ff7824b 100644 --- a/arch/powerpc/platforms/powermac/low_i2c.c +++ b/arch/powerpc/platforms/powermac/low_i2c.c | |||
@@ -33,7 +33,7 @@ | |||
33 | #include <linux/types.h> | 33 | #include <linux/types.h> |
34 | #include <linux/sched.h> | 34 | #include <linux/sched.h> |
35 | #include <linux/init.h> | 35 | #include <linux/init.h> |
36 | #include <linux/module.h> | 36 | #include <linux/export.h> |
37 | #include <linux/adb.h> | 37 | #include <linux/adb.h> |
38 | #include <linux/pmu.h> | 38 | #include <linux/pmu.h> |
39 | #include <linux/delay.h> | 39 | #include <linux/delay.h> |
diff --git a/arch/powerpc/platforms/powermac/nvram.c b/arch/powerpc/platforms/powermac/nvram.c index 695443bfdb08..54d227127c9f 100644 --- a/arch/powerpc/platforms/powermac/nvram.c +++ b/arch/powerpc/platforms/powermac/nvram.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * | 8 | * |
9 | * Todo: - add support for the OF persistent properties | 9 | * Todo: - add support for the OF persistent properties |
10 | */ | 10 | */ |
11 | #include <linux/module.h> | 11 | #include <linux/export.h> |
12 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
13 | #include <linux/stddef.h> | 13 | #include <linux/stddef.h> |
14 | #include <linux/string.h> | 14 | #include <linux/string.h> |
diff --git a/arch/powerpc/platforms/powermac/pic.c b/arch/powerpc/platforms/powermac/pic.c index 7667db448aa7..901bfbddc3dd 100644 --- a/arch/powerpc/platforms/powermac/pic.c +++ b/arch/powerpc/platforms/powermac/pic.c | |||
@@ -24,7 +24,6 @@ | |||
24 | #include <linux/syscore_ops.h> | 24 | #include <linux/syscore_ops.h> |
25 | #include <linux/adb.h> | 25 | #include <linux/adb.h> |
26 | #include <linux/pmu.h> | 26 | #include <linux/pmu.h> |
27 | #include <linux/module.h> | ||
28 | 27 | ||
29 | #include <asm/sections.h> | 28 | #include <asm/sections.h> |
30 | #include <asm/io.h> | 29 | #include <asm/io.h> |
@@ -273,7 +272,6 @@ static struct irqaction xmon_action = { | |||
273 | 272 | ||
274 | static struct irqaction gatwick_cascade_action = { | 273 | static struct irqaction gatwick_cascade_action = { |
275 | .handler = gatwick_action, | 274 | .handler = gatwick_action, |
276 | .flags = IRQF_DISABLED, | ||
277 | .name = "cascade", | 275 | .name = "cascade", |
278 | }; | 276 | }; |
279 | 277 | ||
diff --git a/arch/powerpc/platforms/powermac/setup.c b/arch/powerpc/platforms/powermac/setup.c index a028f08309d6..96580b189ec2 100644 --- a/arch/powerpc/platforms/powermac/setup.c +++ b/arch/powerpc/platforms/powermac/setup.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/stddef.h> | 31 | #include <linux/stddef.h> |
32 | #include <linux/unistd.h> | 32 | #include <linux/unistd.h> |
33 | #include <linux/ptrace.h> | 33 | #include <linux/ptrace.h> |
34 | #include <linux/export.h> | ||
34 | #include <linux/user.h> | 35 | #include <linux/user.h> |
35 | #include <linux/tty.h> | 36 | #include <linux/tty.h> |
36 | #include <linux/string.h> | 37 | #include <linux/string.h> |
diff --git a/arch/powerpc/platforms/powermac/smp.c b/arch/powerpc/platforms/powermac/smp.c index 9a521dc8e485..9b6a820bdd7d 100644 --- a/arch/powerpc/platforms/powermac/smp.c +++ b/arch/powerpc/platforms/powermac/smp.c | |||
@@ -200,7 +200,7 @@ static int psurge_secondary_ipi_init(void) | |||
200 | 200 | ||
201 | if (psurge_secondary_virq) | 201 | if (psurge_secondary_virq) |
202 | rc = request_irq(psurge_secondary_virq, psurge_ipi_intr, | 202 | rc = request_irq(psurge_secondary_virq, psurge_ipi_intr, |
203 | IRQF_DISABLED|IRQF_PERCPU, "IPI", NULL); | 203 | IRQF_PERCPU, "IPI", NULL); |
204 | 204 | ||
205 | if (rc) | 205 | if (rc) |
206 | pr_err("Failed to setup secondary cpu IPI\n"); | 206 | pr_err("Failed to setup secondary cpu IPI\n"); |
@@ -408,7 +408,7 @@ static int __init smp_psurge_kick_cpu(int nr) | |||
408 | 408 | ||
409 | static struct irqaction psurge_irqaction = { | 409 | static struct irqaction psurge_irqaction = { |
410 | .handler = psurge_ipi_intr, | 410 | .handler = psurge_ipi_intr, |
411 | .flags = IRQF_DISABLED|IRQF_PERCPU, | 411 | .flags = IRQF_PERCPU, |
412 | .name = "primary IPI", | 412 | .name = "primary IPI", |
413 | }; | 413 | }; |
414 | 414 | ||
diff --git a/arch/powerpc/platforms/powernv/Kconfig b/arch/powerpc/platforms/powernv/Kconfig new file mode 100644 index 000000000000..74fea5c21839 --- /dev/null +++ b/arch/powerpc/platforms/powernv/Kconfig | |||
@@ -0,0 +1,16 @@ | |||
1 | config PPC_POWERNV | ||
2 | depends on PPC64 && PPC_BOOK3S | ||
3 | bool "IBM PowerNV (Non-Virtualized) platform support" | ||
4 | select PPC_NATIVE | ||
5 | select PPC_XICS | ||
6 | select PPC_ICP_NATIVE | ||
7 | select PPC_P7_NAP | ||
8 | select PPC_PCI_CHOICE if EMBEDDED | ||
9 | default y | ||
10 | |||
11 | config PPC_POWERNV_RTAS | ||
12 | depends on PPC_POWERNV | ||
13 | bool "Support for RTAS based PowerNV platforms such as BML" | ||
14 | default y | ||
15 | select PPC_ICS_RTAS | ||
16 | select PPC_RTAS | ||
diff --git a/arch/powerpc/platforms/powernv/Makefile b/arch/powerpc/platforms/powernv/Makefile new file mode 100644 index 000000000000..31853008b418 --- /dev/null +++ b/arch/powerpc/platforms/powernv/Makefile | |||
@@ -0,0 +1,5 @@ | |||
1 | obj-y += setup.o opal-takeover.o opal-wrappers.o opal.o | ||
2 | obj-y += opal-rtc.o opal-nvram.o | ||
3 | |||
4 | obj-$(CONFIG_SMP) += smp.o | ||
5 | obj-$(CONFIG_PCI) += pci.o pci-p5ioc2.o | ||
diff --git a/arch/powerpc/platforms/powernv/opal-nvram.c b/arch/powerpc/platforms/powernv/opal-nvram.c new file mode 100644 index 000000000000..3f83e1ae26ac --- /dev/null +++ b/arch/powerpc/platforms/powernv/opal-nvram.c | |||
@@ -0,0 +1,88 @@ | |||
1 | /* | ||
2 | * PowerNV nvram code. | ||
3 | * | ||
4 | * Copyright 2011 IBM Corp. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #define DEBUG | ||
13 | |||
14 | #include <linux/kernel.h> | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/of.h> | ||
17 | |||
18 | #include <asm/opal.h> | ||
19 | #include <asm/machdep.h> | ||
20 | |||
21 | static unsigned int nvram_size; | ||
22 | |||
23 | static ssize_t opal_nvram_size(void) | ||
24 | { | ||
25 | return nvram_size; | ||
26 | } | ||
27 | |||
28 | static ssize_t opal_nvram_read(char *buf, size_t count, loff_t *index) | ||
29 | { | ||
30 | s64 rc; | ||
31 | int off; | ||
32 | |||
33 | if (*index >= nvram_size) | ||
34 | return 0; | ||
35 | off = *index; | ||
36 | if ((off + count) > nvram_size) | ||
37 | count = nvram_size - off; | ||
38 | rc = opal_read_nvram(__pa(buf), count, off); | ||
39 | if (rc != OPAL_SUCCESS) | ||
40 | return -EIO; | ||
41 | *index += count; | ||
42 | return count; | ||
43 | } | ||
44 | |||
45 | static ssize_t opal_nvram_write(char *buf, size_t count, loff_t *index) | ||
46 | { | ||
47 | s64 rc = OPAL_BUSY; | ||
48 | int off; | ||
49 | |||
50 | if (*index >= nvram_size) | ||
51 | return 0; | ||
52 | off = *index; | ||
53 | if ((off + count) > nvram_size) | ||
54 | count = nvram_size - off; | ||
55 | |||
56 | while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) { | ||
57 | rc = opal_write_nvram(__pa(buf), count, off); | ||
58 | if (rc == OPAL_BUSY_EVENT) | ||
59 | opal_poll_events(NULL); | ||
60 | } | ||
61 | *index += count; | ||
62 | return count; | ||
63 | } | ||
64 | |||
65 | void __init opal_nvram_init(void) | ||
66 | { | ||
67 | struct device_node *np; | ||
68 | const u32 *nbytes_p; | ||
69 | |||
70 | np = of_find_compatible_node(NULL, NULL, "ibm,opal-nvram"); | ||
71 | if (np == NULL) | ||
72 | return; | ||
73 | |||
74 | nbytes_p = of_get_property(np, "#bytes", NULL); | ||
75 | if (!nbytes_p) { | ||
76 | of_node_put(np); | ||
77 | return; | ||
78 | } | ||
79 | nvram_size = *nbytes_p; | ||
80 | |||
81 | printk(KERN_INFO "OPAL nvram setup, %u bytes\n", nvram_size); | ||
82 | of_node_put(np); | ||
83 | |||
84 | ppc_md.nvram_read = opal_nvram_read; | ||
85 | ppc_md.nvram_write = opal_nvram_write; | ||
86 | ppc_md.nvram_size = opal_nvram_size; | ||
87 | } | ||
88 | |||
diff --git a/arch/powerpc/platforms/powernv/opal-rtc.c b/arch/powerpc/platforms/powernv/opal-rtc.c new file mode 100644 index 000000000000..2aa7641aac9b --- /dev/null +++ b/arch/powerpc/platforms/powernv/opal-rtc.c | |||
@@ -0,0 +1,97 @@ | |||
1 | /* | ||
2 | * PowerNV Real Time Clock. | ||
3 | * | ||
4 | * Copyright 2011 IBM Corp. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | |||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/time.h> | ||
15 | #include <linux/bcd.h> | ||
16 | #include <linux/rtc.h> | ||
17 | #include <linux/delay.h> | ||
18 | |||
19 | #include <asm/opal.h> | ||
20 | #include <asm/firmware.h> | ||
21 | |||
22 | static void opal_to_tm(u32 y_m_d, u64 h_m_s_ms, struct rtc_time *tm) | ||
23 | { | ||
24 | tm->tm_year = ((bcd2bin(y_m_d >> 24) * 100) + | ||
25 | bcd2bin((y_m_d >> 16) & 0xff)) - 1900; | ||
26 | tm->tm_mon = bcd2bin((y_m_d >> 8) & 0xff) - 1; | ||
27 | tm->tm_mday = bcd2bin(y_m_d & 0xff); | ||
28 | tm->tm_hour = bcd2bin((h_m_s_ms >> 56) & 0xff); | ||
29 | tm->tm_min = bcd2bin((h_m_s_ms >> 48) & 0xff); | ||
30 | tm->tm_sec = bcd2bin((h_m_s_ms >> 40) & 0xff); | ||
31 | |||
32 | GregorianDay(tm); | ||
33 | } | ||
34 | |||
35 | unsigned long __init opal_get_boot_time(void) | ||
36 | { | ||
37 | struct rtc_time tm; | ||
38 | u32 y_m_d; | ||
39 | u64 h_m_s_ms; | ||
40 | long rc = OPAL_BUSY; | ||
41 | |||
42 | while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) { | ||
43 | rc = opal_rtc_read(&y_m_d, &h_m_s_ms); | ||
44 | if (rc == OPAL_BUSY_EVENT) | ||
45 | opal_poll_events(NULL); | ||
46 | else | ||
47 | mdelay(10); | ||
48 | } | ||
49 | if (rc != OPAL_SUCCESS) | ||
50 | return 0; | ||
51 | opal_to_tm(y_m_d, h_m_s_ms, &tm); | ||
52 | return mktime(tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, | ||
53 | tm.tm_hour, tm.tm_min, tm.tm_sec); | ||
54 | } | ||
55 | |||
56 | void opal_get_rtc_time(struct rtc_time *tm) | ||
57 | { | ||
58 | long rc = OPAL_BUSY; | ||
59 | u32 y_m_d; | ||
60 | u64 h_m_s_ms; | ||
61 | |||
62 | while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) { | ||
63 | rc = opal_rtc_read(&y_m_d, &h_m_s_ms); | ||
64 | if (rc == OPAL_BUSY_EVENT) | ||
65 | opal_poll_events(NULL); | ||
66 | else | ||
67 | mdelay(10); | ||
68 | } | ||
69 | if (rc != OPAL_SUCCESS) | ||
70 | return; | ||
71 | opal_to_tm(y_m_d, h_m_s_ms, tm); | ||
72 | } | ||
73 | |||
74 | int opal_set_rtc_time(struct rtc_time *tm) | ||
75 | { | ||
76 | long rc = OPAL_BUSY; | ||
77 | u32 y_m_d = 0; | ||
78 | u64 h_m_s_ms = 0; | ||
79 | |||
80 | y_m_d |= ((u32)bin2bcd((tm->tm_year + 1900) / 100)) << 24; | ||
81 | y_m_d |= ((u32)bin2bcd((tm->tm_year + 1900) % 100)) << 16; | ||
82 | y_m_d |= ((u32)bin2bcd((tm->tm_mon + 1))) << 8; | ||
83 | y_m_d |= ((u32)bin2bcd(tm->tm_mday)); | ||
84 | |||
85 | h_m_s_ms |= ((u64)bin2bcd(tm->tm_hour)) << 56; | ||
86 | h_m_s_ms |= ((u64)bin2bcd(tm->tm_min)) << 48; | ||
87 | h_m_s_ms |= ((u64)bin2bcd(tm->tm_sec)) << 40; | ||
88 | |||
89 | while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) { | ||
90 | rc = opal_rtc_write(y_m_d, h_m_s_ms); | ||
91 | if (rc == OPAL_BUSY_EVENT) | ||
92 | opal_poll_events(NULL); | ||
93 | else | ||
94 | mdelay(10); | ||
95 | } | ||
96 | return rc == OPAL_SUCCESS ? 0 : -EIO; | ||
97 | } | ||
diff --git a/arch/powerpc/platforms/powernv/opal-takeover.S b/arch/powerpc/platforms/powernv/opal-takeover.S new file mode 100644 index 000000000000..77b48b2b9309 --- /dev/null +++ b/arch/powerpc/platforms/powernv/opal-takeover.S | |||
@@ -0,0 +1,140 @@ | |||
1 | /* | ||
2 | * PowerNV OPAL takeover assembly code, for use by prom_init.c | ||
3 | * | ||
4 | * Copyright 2011 IBM Corp. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #include <asm/ppc_asm.h> | ||
13 | #include <asm/hvcall.h> | ||
14 | #include <asm/asm-offsets.h> | ||
15 | #include <asm/opal.h> | ||
16 | |||
17 | #define STK_PARAM(i) (48 + ((i)-3)*8) | ||
18 | |||
19 | #define H_HAL_TAKEOVER 0x5124 | ||
20 | #define H_HAL_TAKEOVER_QUERY_MAGIC -1 | ||
21 | |||
22 | .text | ||
23 | _GLOBAL(opal_query_takeover) | ||
24 | mfcr r0 | ||
25 | stw r0,8(r1) | ||
26 | std r3,STK_PARAM(r3)(r1) | ||
27 | std r4,STK_PARAM(r4)(r1) | ||
28 | li r3,H_HAL_TAKEOVER | ||
29 | li r4,H_HAL_TAKEOVER_QUERY_MAGIC | ||
30 | HVSC | ||
31 | ld r10,STK_PARAM(r3)(r1) | ||
32 | std r4,0(r10) | ||
33 | ld r10,STK_PARAM(r4)(r1) | ||
34 | std r5,0(r10) | ||
35 | lwz r0,8(r1) | ||
36 | mtcrf 0xff,r0 | ||
37 | blr | ||
38 | |||
39 | _GLOBAL(opal_do_takeover) | ||
40 | mfcr r0 | ||
41 | stw r0,8(r1) | ||
42 | mflr r0 | ||
43 | std r0,16(r1) | ||
44 | bl __opal_do_takeover | ||
45 | ld r0,16(r1) | ||
46 | mtlr r0 | ||
47 | lwz r0,8(r1) | ||
48 | mtcrf 0xff,r0 | ||
49 | blr | ||
50 | |||
51 | __opal_do_takeover: | ||
52 | ld r4,0(r3) | ||
53 | ld r5,0x8(r3) | ||
54 | ld r6,0x10(r3) | ||
55 | ld r7,0x18(r3) | ||
56 | ld r8,0x20(r3) | ||
57 | ld r9,0x28(r3) | ||
58 | ld r10,0x30(r3) | ||
59 | ld r11,0x38(r3) | ||
60 | li r3,H_HAL_TAKEOVER | ||
61 | HVSC | ||
62 | blr | ||
63 | |||
64 | .globl opal_secondary_entry | ||
65 | opal_secondary_entry: | ||
66 | mr r31,r3 | ||
67 | mfmsr r11 | ||
68 | li r12,(MSR_SF | MSR_ISF)@highest | ||
69 | sldi r12,r12,48 | ||
70 | or r11,r11,r12 | ||
71 | mtmsrd r11 | ||
72 | isync | ||
73 | mfspr r4,SPRN_PIR | ||
74 | std r4,0(r3) | ||
75 | 1: HMT_LOW | ||
76 | ld r4,8(r3) | ||
77 | cmpli cr0,r4,0 | ||
78 | beq 1b | ||
79 | HMT_MEDIUM | ||
80 | 1: addi r3,r31,16 | ||
81 | bl __opal_do_takeover | ||
82 | b 1b | ||
83 | |||
84 | _GLOBAL(opal_enter_rtas) | ||
85 | mflr r0 | ||
86 | std r0,16(r1) | ||
87 | stdu r1,-PROM_FRAME_SIZE(r1) /* Save SP and create stack space */ | ||
88 | |||
89 | /* Because PROM is running in 32b mode, it clobbers the high order half | ||
90 | * of all registers that it saves. We therefore save those registers | ||
91 | * PROM might touch to the stack. (r0, r3-r13 are caller saved) | ||
92 | */ | ||
93 | SAVE_GPR(2, r1) | ||
94 | SAVE_GPR(13, r1) | ||
95 | SAVE_8GPRS(14, r1) | ||
96 | SAVE_10GPRS(22, r1) | ||
97 | mfcr r10 | ||
98 | mfmsr r11 | ||
99 | std r10,_CCR(r1) | ||
100 | std r11,_MSR(r1) | ||
101 | |||
102 | /* Get the PROM entrypoint */ | ||
103 | mtlr r5 | ||
104 | |||
105 | /* Switch MSR to 32 bits mode | ||
106 | */ | ||
107 | li r12,1 | ||
108 | rldicr r12,r12,MSR_SF_LG,(63-MSR_SF_LG) | ||
109 | andc r11,r11,r12 | ||
110 | li r12,1 | ||
111 | rldicr r12,r12,MSR_ISF_LG,(63-MSR_ISF_LG) | ||
112 | andc r11,r11,r12 | ||
113 | mtmsrd r11 | ||
114 | isync | ||
115 | |||
116 | /* Enter RTAS here... */ | ||
117 | blrl | ||
118 | |||
119 | /* Just make sure that r1 top 32 bits didn't get | ||
120 | * corrupt by OF | ||
121 | */ | ||
122 | rldicl r1,r1,0,32 | ||
123 | |||
124 | /* Restore the MSR (back to 64 bits) */ | ||
125 | ld r0,_MSR(r1) | ||
126 | MTMSRD(r0) | ||
127 | isync | ||
128 | |||
129 | /* Restore other registers */ | ||
130 | REST_GPR(2, r1) | ||
131 | REST_GPR(13, r1) | ||
132 | REST_8GPRS(14, r1) | ||
133 | REST_10GPRS(22, r1) | ||
134 | ld r4,_CCR(r1) | ||
135 | mtcr r4 | ||
136 | |||
137 | addi r1,r1,PROM_FRAME_SIZE | ||
138 | ld r0,16(r1) | ||
139 | mtlr r0 | ||
140 | blr | ||
diff --git a/arch/powerpc/platforms/powernv/opal-wrappers.S b/arch/powerpc/platforms/powernv/opal-wrappers.S new file mode 100644 index 000000000000..4a3f46d8533e --- /dev/null +++ b/arch/powerpc/platforms/powernv/opal-wrappers.S | |||
@@ -0,0 +1,101 @@ | |||
1 | /* | ||
2 | * PowerNV OPAL API wrappers | ||
3 | * | ||
4 | * Copyright 2011 IBM Corp. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #include <asm/ppc_asm.h> | ||
13 | #include <asm/hvcall.h> | ||
14 | #include <asm/asm-offsets.h> | ||
15 | #include <asm/opal.h> | ||
16 | |||
17 | /* TODO: | ||
18 | * | ||
19 | * - Trace irqs in/off (needs saving/restoring all args, argh...) | ||
20 | * - Get r11 feed up by Dave so I can have better register usage | ||
21 | */ | ||
22 | #define OPAL_CALL(name, token) \ | ||
23 | _GLOBAL(name); \ | ||
24 | mflr r0; \ | ||
25 | mfcr r12; \ | ||
26 | std r0,16(r1); \ | ||
27 | std r12,8(r1); \ | ||
28 | std r1,PACAR1(r13); \ | ||
29 | li r0,0; \ | ||
30 | mfmsr r12; \ | ||
31 | ori r0,r0,MSR_EE; \ | ||
32 | std r12,PACASAVEDMSR(r13); \ | ||
33 | andc r12,r12,r0; \ | ||
34 | mtmsrd r12,1; \ | ||
35 | LOAD_REG_ADDR(r0,.opal_return); \ | ||
36 | mtlr r0; \ | ||
37 | li r0,MSR_DR|MSR_IR; \ | ||
38 | andc r12,r12,r0; \ | ||
39 | li r0,token; \ | ||
40 | mtspr SPRN_HSRR1,r12; \ | ||
41 | LOAD_REG_ADDR(r11,opal); \ | ||
42 | ld r12,8(r11); \ | ||
43 | ld r2,0(r11); \ | ||
44 | mtspr SPRN_HSRR0,r12; \ | ||
45 | hrfid | ||
46 | |||
47 | _STATIC(opal_return) | ||
48 | ld r2,PACATOC(r13); | ||
49 | ld r4,8(r1); | ||
50 | ld r5,16(r1); | ||
51 | ld r6,PACASAVEDMSR(r13); | ||
52 | mtspr SPRN_SRR0,r5; | ||
53 | mtspr SPRN_SRR1,r6; | ||
54 | mtcr r4; | ||
55 | rfid | ||
56 | |||
57 | OPAL_CALL(opal_console_write, OPAL_CONSOLE_WRITE); | ||
58 | OPAL_CALL(opal_console_read, OPAL_CONSOLE_READ); | ||
59 | OPAL_CALL(opal_console_write_buffer_space, OPAL_CONSOLE_WRITE_BUFFER_SPACE); | ||
60 | OPAL_CALL(opal_rtc_read, OPAL_RTC_READ); | ||
61 | OPAL_CALL(opal_rtc_write, OPAL_RTC_WRITE); | ||
62 | OPAL_CALL(opal_cec_power_down, OPAL_CEC_POWER_DOWN); | ||
63 | OPAL_CALL(opal_cec_reboot, OPAL_CEC_REBOOT); | ||
64 | OPAL_CALL(opal_read_nvram, OPAL_READ_NVRAM); | ||
65 | OPAL_CALL(opal_write_nvram, OPAL_WRITE_NVRAM); | ||
66 | OPAL_CALL(opal_handle_interrupt, OPAL_HANDLE_INTERRUPT); | ||
67 | OPAL_CALL(opal_poll_events, OPAL_POLL_EVENTS); | ||
68 | OPAL_CALL(opal_pci_set_hub_tce_memory, OPAL_PCI_SET_HUB_TCE_MEMORY); | ||
69 | OPAL_CALL(opal_pci_set_phb_tce_memory, OPAL_PCI_SET_PHB_TCE_MEMORY); | ||
70 | OPAL_CALL(opal_pci_config_read_byte, OPAL_PCI_CONFIG_READ_BYTE); | ||
71 | OPAL_CALL(opal_pci_config_read_half_word, OPAL_PCI_CONFIG_READ_HALF_WORD); | ||
72 | OPAL_CALL(opal_pci_config_read_word, OPAL_PCI_CONFIG_READ_WORD); | ||
73 | OPAL_CALL(opal_pci_config_write_byte, OPAL_PCI_CONFIG_WRITE_BYTE); | ||
74 | OPAL_CALL(opal_pci_config_write_half_word, OPAL_PCI_CONFIG_WRITE_HALF_WORD); | ||
75 | OPAL_CALL(opal_pci_config_write_word, OPAL_PCI_CONFIG_WRITE_WORD); | ||
76 | OPAL_CALL(opal_set_xive, OPAL_SET_XIVE); | ||
77 | OPAL_CALL(opal_get_xive, OPAL_GET_XIVE); | ||
78 | OPAL_CALL(opal_register_exception_handler, OPAL_REGISTER_OPAL_EXCEPTION_HANDLER); | ||
79 | OPAL_CALL(opal_pci_eeh_freeze_status, OPAL_PCI_EEH_FREEZE_STATUS); | ||
80 | OPAL_CALL(opal_pci_eeh_freeze_clear, OPAL_PCI_EEH_FREEZE_CLEAR); | ||
81 | OPAL_CALL(opal_pci_shpc, OPAL_PCI_SHPC); | ||
82 | OPAL_CALL(opal_pci_phb_mmio_enable, OPAL_PCI_PHB_MMIO_ENABLE); | ||
83 | OPAL_CALL(opal_pci_set_phb_mem_window, OPAL_PCI_SET_PHB_MEM_WINDOW); | ||
84 | OPAL_CALL(opal_pci_map_pe_mmio_window, OPAL_PCI_MAP_PE_MMIO_WINDOW); | ||
85 | OPAL_CALL(opal_pci_set_phb_table_memory, OPAL_PCI_SET_PHB_TABLE_MEMORY); | ||
86 | OPAL_CALL(opal_pci_set_pe, OPAL_PCI_SET_PE); | ||
87 | OPAL_CALL(opal_pci_set_peltv, OPAL_PCI_SET_PELTV); | ||
88 | OPAL_CALL(opal_pci_set_mve, OPAL_PCI_SET_MVE); | ||
89 | OPAL_CALL(opal_pci_set_mve_enable, OPAL_PCI_SET_MVE_ENABLE); | ||
90 | OPAL_CALL(opal_pci_get_xive_reissue, OPAL_PCI_GET_XIVE_REISSUE); | ||
91 | OPAL_CALL(opal_pci_set_xive_reissue, OPAL_PCI_SET_XIVE_REISSUE); | ||
92 | OPAL_CALL(opal_pci_set_xive_pe, OPAL_PCI_SET_XIVE_PE); | ||
93 | OPAL_CALL(opal_get_xive_source, OPAL_GET_XIVE_SOURCE); | ||
94 | OPAL_CALL(opal_get_msi_32, OPAL_GET_MSI_32); | ||
95 | OPAL_CALL(opal_get_msi_64, OPAL_GET_MSI_64); | ||
96 | OPAL_CALL(opal_start_cpu, OPAL_START_CPU); | ||
97 | OPAL_CALL(opal_query_cpu_status, OPAL_QUERY_CPU_STATUS); | ||
98 | OPAL_CALL(opal_write_oppanel, OPAL_WRITE_OPPANEL); | ||
99 | OPAL_CALL(opal_pci_map_pe_dma_window, OPAL_PCI_MAP_PE_DMA_WINDOW); | ||
100 | OPAL_CALL(opal_pci_map_pe_dma_window_real, OPAL_PCI_MAP_PE_DMA_WINDOW_REAL); | ||
101 | OPAL_CALL(opal_pci_reset, OPAL_PCI_RESET); | ||
diff --git a/arch/powerpc/platforms/powernv/opal.c b/arch/powerpc/platforms/powernv/opal.c new file mode 100644 index 000000000000..aaa0dba49471 --- /dev/null +++ b/arch/powerpc/platforms/powernv/opal.c | |||
@@ -0,0 +1,322 @@ | |||
1 | /* | ||
2 | * PowerNV OPAL high level interfaces | ||
3 | * | ||
4 | * Copyright 2011 IBM Corp. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #undef DEBUG | ||
13 | |||
14 | #include <linux/types.h> | ||
15 | #include <linux/of.h> | ||
16 | #include <linux/of_platform.h> | ||
17 | #include <linux/interrupt.h> | ||
18 | #include <asm/opal.h> | ||
19 | #include <asm/firmware.h> | ||
20 | |||
21 | #include "powernv.h" | ||
22 | |||
23 | struct opal { | ||
24 | u64 base; | ||
25 | u64 entry; | ||
26 | } opal; | ||
27 | |||
28 | static struct device_node *opal_node; | ||
29 | static DEFINE_SPINLOCK(opal_write_lock); | ||
30 | extern u64 opal_mc_secondary_handler[]; | ||
31 | |||
32 | int __init early_init_dt_scan_opal(unsigned long node, | ||
33 | const char *uname, int depth, void *data) | ||
34 | { | ||
35 | const void *basep, *entryp; | ||
36 | unsigned long basesz, entrysz; | ||
37 | u64 glue; | ||
38 | |||
39 | if (depth != 1 || strcmp(uname, "ibm,opal") != 0) | ||
40 | return 0; | ||
41 | |||
42 | basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz); | ||
43 | entryp = of_get_flat_dt_prop(node, "opal-entry-address", &entrysz); | ||
44 | |||
45 | if (!basep || !entryp) | ||
46 | return 1; | ||
47 | |||
48 | opal.base = of_read_number(basep, basesz/4); | ||
49 | opal.entry = of_read_number(entryp, entrysz/4); | ||
50 | |||
51 | pr_debug("OPAL Base = 0x%llx (basep=%p basesz=%ld)\n", | ||
52 | opal.base, basep, basesz); | ||
53 | pr_debug("OPAL Entry = 0x%llx (entryp=%p basesz=%ld)\n", | ||
54 | opal.entry, entryp, entrysz); | ||
55 | |||
56 | powerpc_firmware_features |= FW_FEATURE_OPAL; | ||
57 | if (of_flat_dt_is_compatible(node, "ibm,opal-v2")) { | ||
58 | powerpc_firmware_features |= FW_FEATURE_OPALv2; | ||
59 | printk("OPAL V2 detected !\n"); | ||
60 | } else { | ||
61 | printk("OPAL V1 detected !\n"); | ||
62 | } | ||
63 | |||
64 | /* Hookup some exception handlers. We use the fwnmi area at 0x7000 | ||
65 | * to provide the glue space to OPAL | ||
66 | */ | ||
67 | glue = 0x7000; | ||
68 | opal_register_exception_handler(OPAL_MACHINE_CHECK_HANDLER, | ||
69 | __pa(opal_mc_secondary_handler[0]), | ||
70 | glue); | ||
71 | glue += 128; | ||
72 | opal_register_exception_handler(OPAL_HYPERVISOR_MAINTENANCE_HANDLER, | ||
73 | 0, glue); | ||
74 | glue += 128; | ||
75 | opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER, 0, glue); | ||
76 | |||
77 | return 1; | ||
78 | } | ||
79 | |||
80 | int opal_get_chars(uint32_t vtermno, char *buf, int count) | ||
81 | { | ||
82 | s64 len, rc; | ||
83 | u64 evt; | ||
84 | |||
85 | if (!opal.entry) | ||
86 | return -ENODEV; | ||
87 | opal_poll_events(&evt); | ||
88 | if ((evt & OPAL_EVENT_CONSOLE_INPUT) == 0) | ||
89 | return 0; | ||
90 | len = count; | ||
91 | rc = opal_console_read(vtermno, &len, buf); | ||
92 | if (rc == OPAL_SUCCESS) | ||
93 | return len; | ||
94 | return 0; | ||
95 | } | ||
96 | |||
97 | int opal_put_chars(uint32_t vtermno, const char *data, int total_len) | ||
98 | { | ||
99 | int written = 0; | ||
100 | s64 len, rc; | ||
101 | unsigned long flags; | ||
102 | u64 evt; | ||
103 | |||
104 | if (!opal.entry) | ||
105 | return -ENODEV; | ||
106 | |||
107 | /* We want put_chars to be atomic to avoid mangling of hvsi | ||
108 | * packets. To do that, we first test for room and return | ||
109 | * -EAGAIN if there isn't enough. | ||
110 | * | ||
111 | * Unfortunately, opal_console_write_buffer_space() doesn't | ||
112 | * appear to work on opal v1, so we just assume there is | ||
113 | * enough room and be done with it | ||
114 | */ | ||
115 | spin_lock_irqsave(&opal_write_lock, flags); | ||
116 | if (firmware_has_feature(FW_FEATURE_OPALv2)) { | ||
117 | rc = opal_console_write_buffer_space(vtermno, &len); | ||
118 | if (rc || len < total_len) { | ||
119 | spin_unlock_irqrestore(&opal_write_lock, flags); | ||
120 | /* Closed -> drop characters */ | ||
121 | if (rc) | ||
122 | return total_len; | ||
123 | opal_poll_events(&evt); | ||
124 | return -EAGAIN; | ||
125 | } | ||
126 | } | ||
127 | |||
128 | /* We still try to handle partial completions, though they | ||
129 | * should no longer happen. | ||
130 | */ | ||
131 | rc = OPAL_BUSY; | ||
132 | while(total_len > 0 && (rc == OPAL_BUSY || | ||
133 | rc == OPAL_BUSY_EVENT || rc == OPAL_SUCCESS)) { | ||
134 | len = total_len; | ||
135 | rc = opal_console_write(vtermno, &len, data); | ||
136 | if (rc == OPAL_SUCCESS) { | ||
137 | total_len -= len; | ||
138 | data += len; | ||
139 | written += len; | ||
140 | } | ||
141 | /* This is a bit nasty but we need that for the console to | ||
142 | * flush when there aren't any interrupts. We will clean | ||
143 | * things a bit later to limit that to synchronous path | ||
144 | * such as the kernel console and xmon/udbg | ||
145 | */ | ||
146 | do | ||
147 | opal_poll_events(&evt); | ||
148 | while(rc == OPAL_SUCCESS && (evt & OPAL_EVENT_CONSOLE_OUTPUT)); | ||
149 | } | ||
150 | spin_unlock_irqrestore(&opal_write_lock, flags); | ||
151 | return written; | ||
152 | } | ||
153 | |||
154 | int opal_machine_check(struct pt_regs *regs) | ||
155 | { | ||
156 | struct opal_machine_check_event *opal_evt = get_paca()->opal_mc_evt; | ||
157 | struct opal_machine_check_event evt; | ||
158 | const char *level, *sevstr, *subtype; | ||
159 | static const char *opal_mc_ue_types[] = { | ||
160 | "Indeterminate", | ||
161 | "Instruction fetch", | ||
162 | "Page table walk ifetch", | ||
163 | "Load/Store", | ||
164 | "Page table walk Load/Store", | ||
165 | }; | ||
166 | static const char *opal_mc_slb_types[] = { | ||
167 | "Indeterminate", | ||
168 | "Parity", | ||
169 | "Multihit", | ||
170 | }; | ||
171 | static const char *opal_mc_erat_types[] = { | ||
172 | "Indeterminate", | ||
173 | "Parity", | ||
174 | "Multihit", | ||
175 | }; | ||
176 | static const char *opal_mc_tlb_types[] = { | ||
177 | "Indeterminate", | ||
178 | "Parity", | ||
179 | "Multihit", | ||
180 | }; | ||
181 | |||
182 | /* Copy the event structure and release the original */ | ||
183 | evt = *opal_evt; | ||
184 | opal_evt->in_use = 0; | ||
185 | |||
186 | /* Print things out */ | ||
187 | if (evt.version != OpalMCE_V1) { | ||
188 | pr_err("Machine Check Exception, Unknown event version %d !\n", | ||
189 | evt.version); | ||
190 | return 0; | ||
191 | } | ||
192 | switch(evt.severity) { | ||
193 | case OpalMCE_SEV_NO_ERROR: | ||
194 | level = KERN_INFO; | ||
195 | sevstr = "Harmless"; | ||
196 | break; | ||
197 | case OpalMCE_SEV_WARNING: | ||
198 | level = KERN_WARNING; | ||
199 | sevstr = ""; | ||
200 | break; | ||
201 | case OpalMCE_SEV_ERROR_SYNC: | ||
202 | level = KERN_ERR; | ||
203 | sevstr = "Severe"; | ||
204 | break; | ||
205 | case OpalMCE_SEV_FATAL: | ||
206 | default: | ||
207 | level = KERN_ERR; | ||
208 | sevstr = "Fatal"; | ||
209 | break; | ||
210 | } | ||
211 | |||
212 | printk("%s%s Machine check interrupt [%s]\n", level, sevstr, | ||
213 | evt.disposition == OpalMCE_DISPOSITION_RECOVERED ? | ||
214 | "Recovered" : "[Not recovered"); | ||
215 | printk("%s Initiator: %s\n", level, | ||
216 | evt.initiator == OpalMCE_INITIATOR_CPU ? "CPU" : "Unknown"); | ||
217 | switch(evt.error_type) { | ||
218 | case OpalMCE_ERROR_TYPE_UE: | ||
219 | subtype = evt.u.ue_error.ue_error_type < | ||
220 | ARRAY_SIZE(opal_mc_ue_types) ? | ||
221 | opal_mc_ue_types[evt.u.ue_error.ue_error_type] | ||
222 | : "Unknown"; | ||
223 | printk("%s Error type: UE [%s]\n", level, subtype); | ||
224 | if (evt.u.ue_error.effective_address_provided) | ||
225 | printk("%s Effective address: %016llx\n", | ||
226 | level, evt.u.ue_error.effective_address); | ||
227 | if (evt.u.ue_error.physical_address_provided) | ||
228 | printk("%s Physial address: %016llx\n", | ||
229 | level, evt.u.ue_error.physical_address); | ||
230 | break; | ||
231 | case OpalMCE_ERROR_TYPE_SLB: | ||
232 | subtype = evt.u.slb_error.slb_error_type < | ||
233 | ARRAY_SIZE(opal_mc_slb_types) ? | ||
234 | opal_mc_slb_types[evt.u.slb_error.slb_error_type] | ||
235 | : "Unknown"; | ||
236 | printk("%s Error type: SLB [%s]\n", level, subtype); | ||
237 | if (evt.u.slb_error.effective_address_provided) | ||
238 | printk("%s Effective address: %016llx\n", | ||
239 | level, evt.u.slb_error.effective_address); | ||
240 | break; | ||
241 | case OpalMCE_ERROR_TYPE_ERAT: | ||
242 | subtype = evt.u.erat_error.erat_error_type < | ||
243 | ARRAY_SIZE(opal_mc_erat_types) ? | ||
244 | opal_mc_erat_types[evt.u.erat_error.erat_error_type] | ||
245 | : "Unknown"; | ||
246 | printk("%s Error type: ERAT [%s]\n", level, subtype); | ||
247 | if (evt.u.erat_error.effective_address_provided) | ||
248 | printk("%s Effective address: %016llx\n", | ||
249 | level, evt.u.erat_error.effective_address); | ||
250 | break; | ||
251 | case OpalMCE_ERROR_TYPE_TLB: | ||
252 | subtype = evt.u.tlb_error.tlb_error_type < | ||
253 | ARRAY_SIZE(opal_mc_tlb_types) ? | ||
254 | opal_mc_tlb_types[evt.u.tlb_error.tlb_error_type] | ||
255 | : "Unknown"; | ||
256 | printk("%s Error type: TLB [%s]\n", level, subtype); | ||
257 | if (evt.u.tlb_error.effective_address_provided) | ||
258 | printk("%s Effective address: %016llx\n", | ||
259 | level, evt.u.tlb_error.effective_address); | ||
260 | break; | ||
261 | default: | ||
262 | case OpalMCE_ERROR_TYPE_UNKNOWN: | ||
263 | printk("%s Error type: Unknown\n", level); | ||
264 | break; | ||
265 | } | ||
266 | return evt.severity == OpalMCE_SEV_FATAL ? 0 : 1; | ||
267 | } | ||
268 | |||
269 | static irqreturn_t opal_interrupt(int irq, void *data) | ||
270 | { | ||
271 | uint64_t events; | ||
272 | |||
273 | opal_handle_interrupt(virq_to_hw(irq), &events); | ||
274 | |||
275 | /* XXX TODO: Do something with the events */ | ||
276 | |||
277 | return IRQ_HANDLED; | ||
278 | } | ||
279 | |||
280 | static int __init opal_init(void) | ||
281 | { | ||
282 | struct device_node *np, *consoles; | ||
283 | const u32 *irqs; | ||
284 | int rc, i, irqlen; | ||
285 | |||
286 | opal_node = of_find_node_by_path("/ibm,opal"); | ||
287 | if (!opal_node) { | ||
288 | pr_warn("opal: Node not found\n"); | ||
289 | return -ENODEV; | ||
290 | } | ||
291 | if (firmware_has_feature(FW_FEATURE_OPALv2)) | ||
292 | consoles = of_find_node_by_path("/ibm,opal/consoles"); | ||
293 | else | ||
294 | consoles = of_node_get(opal_node); | ||
295 | |||
296 | /* Register serial ports */ | ||
297 | for_each_child_of_node(consoles, np) { | ||
298 | if (strcmp(np->name, "serial")) | ||
299 | continue; | ||
300 | of_platform_device_create(np, NULL, NULL); | ||
301 | } | ||
302 | of_node_put(consoles); | ||
303 | |||
304 | /* Find all OPAL interrupts and request them */ | ||
305 | irqs = of_get_property(opal_node, "opal-interrupts", &irqlen); | ||
306 | pr_debug("opal: Found %d interrupts reserved for OPAL\n", | ||
307 | irqs ? (irqlen / 4) : 0); | ||
308 | for (i = 0; irqs && i < (irqlen / 4); i++, irqs++) { | ||
309 | unsigned int hwirq = be32_to_cpup(irqs); | ||
310 | unsigned int irq = irq_create_mapping(NULL, hwirq); | ||
311 | if (irq == NO_IRQ) { | ||
312 | pr_warning("opal: Failed to map irq 0x%x\n", hwirq); | ||
313 | continue; | ||
314 | } | ||
315 | rc = request_irq(irq, opal_interrupt, 0, "opal", NULL); | ||
316 | if (rc) | ||
317 | pr_warning("opal: Error %d requesting irq %d" | ||
318 | " (0x%x)\n", rc, irq, hwirq); | ||
319 | } | ||
320 | return 0; | ||
321 | } | ||
322 | subsys_initcall(opal_init); | ||
diff --git a/arch/powerpc/platforms/powernv/pci-p5ioc2.c b/arch/powerpc/platforms/powernv/pci-p5ioc2.c new file mode 100644 index 000000000000..4c80f7c77d56 --- /dev/null +++ b/arch/powerpc/platforms/powernv/pci-p5ioc2.c | |||
@@ -0,0 +1,234 @@ | |||
1 | /* | ||
2 | * Support PCI/PCIe on PowerNV platforms | ||
3 | * | ||
4 | * Currently supports only P5IOC2 | ||
5 | * | ||
6 | * Copyright 2011 Benjamin Herrenschmidt, IBM Corp. | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or | ||
9 | * modify it under the terms of the GNU General Public License | ||
10 | * as published by the Free Software Foundation; either version | ||
11 | * 2 of the License, or (at your option) any later version. | ||
12 | */ | ||
13 | |||
14 | #include <linux/kernel.h> | ||
15 | #include <linux/pci.h> | ||
16 | #include <linux/delay.h> | ||
17 | #include <linux/string.h> | ||
18 | #include <linux/init.h> | ||
19 | #include <linux/bootmem.h> | ||
20 | #include <linux/irq.h> | ||
21 | #include <linux/io.h> | ||
22 | #include <linux/msi.h> | ||
23 | |||
24 | #include <asm/sections.h> | ||
25 | #include <asm/io.h> | ||
26 | #include <asm/prom.h> | ||
27 | #include <asm/pci-bridge.h> | ||
28 | #include <asm/machdep.h> | ||
29 | #include <asm/ppc-pci.h> | ||
30 | #include <asm/opal.h> | ||
31 | #include <asm/iommu.h> | ||
32 | #include <asm/tce.h> | ||
33 | #include <asm/abs_addr.h> | ||
34 | |||
35 | #include "powernv.h" | ||
36 | #include "pci.h" | ||
37 | |||
38 | /* For now, use a fixed amount of TCE memory for each p5ioc2 | ||
39 | * hub, 16M will do | ||
40 | */ | ||
41 | #define P5IOC2_TCE_MEMORY 0x01000000 | ||
42 | |||
43 | #ifdef CONFIG_PCI_MSI | ||
44 | static int pnv_pci_p5ioc2_msi_setup(struct pnv_phb *phb, struct pci_dev *dev, | ||
45 | unsigned int hwirq, unsigned int is_64, | ||
46 | struct msi_msg *msg) | ||
47 | { | ||
48 | if (WARN_ON(!is_64)) | ||
49 | return -ENXIO; | ||
50 | msg->data = hwirq - phb->msi_base; | ||
51 | msg->address_hi = 0x10000000; | ||
52 | msg->address_lo = 0; | ||
53 | |||
54 | return 0; | ||
55 | } | ||
56 | |||
57 | static void pnv_pci_init_p5ioc2_msis(struct pnv_phb *phb) | ||
58 | { | ||
59 | unsigned int bmap_size; | ||
60 | const __be32 *prop = of_get_property(phb->hose->dn, | ||
61 | "ibm,opal-msi-ranges", NULL); | ||
62 | if (!prop) | ||
63 | return; | ||
64 | |||
65 | /* Don't do MSI's on p5ioc2 PCI-X are they are not properly | ||
66 | * verified in HW | ||
67 | */ | ||
68 | if (of_device_is_compatible(phb->hose->dn, "ibm,p5ioc2-pcix")) | ||
69 | return; | ||
70 | phb->msi_base = be32_to_cpup(prop); | ||
71 | phb->msi_count = be32_to_cpup(prop + 1); | ||
72 | bmap_size = BITS_TO_LONGS(phb->msi_count) * sizeof(unsigned long); | ||
73 | phb->msi_map = zalloc_maybe_bootmem(bmap_size, GFP_KERNEL); | ||
74 | if (!phb->msi_map) { | ||
75 | pr_err("PCI %d: Failed to allocate MSI bitmap !\n", | ||
76 | phb->hose->global_number); | ||
77 | return; | ||
78 | } | ||
79 | phb->msi_setup = pnv_pci_p5ioc2_msi_setup; | ||
80 | phb->msi32_support = 0; | ||
81 | pr_info(" Allocated bitmap for %d MSIs (base IRQ 0x%x)\n", | ||
82 | phb->msi_count, phb->msi_base); | ||
83 | } | ||
84 | #else | ||
85 | static void pnv_pci_init_p5ioc2_msis(struct pnv_phb *phb) { } | ||
86 | #endif /* CONFIG_PCI_MSI */ | ||
87 | |||
88 | static void __devinit pnv_pci_p5ioc2_dma_dev_setup(struct pnv_phb *phb, | ||
89 | struct pci_dev *pdev) | ||
90 | { | ||
91 | if (phb->p5ioc2.iommu_table.it_map == NULL) | ||
92 | iommu_init_table(&phb->p5ioc2.iommu_table, phb->hose->node); | ||
93 | |||
94 | set_iommu_table_base(&pdev->dev, &phb->p5ioc2.iommu_table); | ||
95 | } | ||
96 | |||
97 | static void __init pnv_pci_init_p5ioc2_phb(struct device_node *np, | ||
98 | void *tce_mem, u64 tce_size) | ||
99 | { | ||
100 | struct pnv_phb *phb; | ||
101 | const u64 *prop64; | ||
102 | u64 phb_id; | ||
103 | int64_t rc; | ||
104 | static int primary = 1; | ||
105 | |||
106 | pr_info(" Initializing p5ioc2 PHB %s\n", np->full_name); | ||
107 | |||
108 | prop64 = of_get_property(np, "ibm,opal-phbid", NULL); | ||
109 | if (!prop64) { | ||
110 | pr_err(" Missing \"ibm,opal-phbid\" property !\n"); | ||
111 | return; | ||
112 | } | ||
113 | phb_id = be64_to_cpup(prop64); | ||
114 | pr_devel(" PHB-ID : 0x%016llx\n", phb_id); | ||
115 | pr_devel(" TCE AT : 0x%016lx\n", __pa(tce_mem)); | ||
116 | pr_devel(" TCE SZ : 0x%016llx\n", tce_size); | ||
117 | |||
118 | rc = opal_pci_set_phb_tce_memory(phb_id, __pa(tce_mem), tce_size); | ||
119 | if (rc != OPAL_SUCCESS) { | ||
120 | pr_err(" Failed to set TCE memory, OPAL error %lld\n", rc); | ||
121 | return; | ||
122 | } | ||
123 | |||
124 | phb = alloc_bootmem(sizeof(struct pnv_phb)); | ||
125 | if (phb) { | ||
126 | memset(phb, 0, sizeof(struct pnv_phb)); | ||
127 | phb->hose = pcibios_alloc_controller(np); | ||
128 | } | ||
129 | if (!phb || !phb->hose) { | ||
130 | pr_err(" Failed to allocate PCI controller\n"); | ||
131 | return; | ||
132 | } | ||
133 | |||
134 | spin_lock_init(&phb->lock); | ||
135 | phb->hose->first_busno = 0; | ||
136 | phb->hose->last_busno = 0xff; | ||
137 | phb->hose->private_data = phb; | ||
138 | phb->opal_id = phb_id; | ||
139 | phb->type = PNV_PHB_P5IOC2; | ||
140 | |||
141 | phb->regs = of_iomap(np, 0); | ||
142 | |||
143 | if (phb->regs == NULL) | ||
144 | pr_err(" Failed to map registers !\n"); | ||
145 | else { | ||
146 | pr_devel(" P_BUID = 0x%08x\n", in_be32(phb->regs + 0x100)); | ||
147 | pr_devel(" P_IOSZ = 0x%08x\n", in_be32(phb->regs + 0x1b0)); | ||
148 | pr_devel(" P_IO_ST = 0x%08x\n", in_be32(phb->regs + 0x1e0)); | ||
149 | pr_devel(" P_MEM1_H = 0x%08x\n", in_be32(phb->regs + 0x1a0)); | ||
150 | pr_devel(" P_MEM1_L = 0x%08x\n", in_be32(phb->regs + 0x190)); | ||
151 | pr_devel(" P_MSZ1_L = 0x%08x\n", in_be32(phb->regs + 0x1c0)); | ||
152 | pr_devel(" P_MEM_ST = 0x%08x\n", in_be32(phb->regs + 0x1d0)); | ||
153 | pr_devel(" P_MEM2_H = 0x%08x\n", in_be32(phb->regs + 0x2c0)); | ||
154 | pr_devel(" P_MEM2_L = 0x%08x\n", in_be32(phb->regs + 0x2b0)); | ||
155 | pr_devel(" P_MSZ2_H = 0x%08x\n", in_be32(phb->regs + 0x2d0)); | ||
156 | pr_devel(" P_MSZ2_L = 0x%08x\n", in_be32(phb->regs + 0x2e0)); | ||
157 | } | ||
158 | |||
159 | /* Interpret the "ranges" property */ | ||
160 | /* This also maps the I/O region and sets isa_io/mem_base */ | ||
161 | pci_process_bridge_OF_ranges(phb->hose, np, primary); | ||
162 | primary = 0; | ||
163 | |||
164 | phb->hose->ops = &pnv_pci_ops; | ||
165 | |||
166 | /* Setup MSI support */ | ||
167 | pnv_pci_init_p5ioc2_msis(phb); | ||
168 | |||
169 | /* Setup TCEs */ | ||
170 | phb->dma_dev_setup = pnv_pci_p5ioc2_dma_dev_setup; | ||
171 | pnv_pci_setup_iommu_table(&phb->p5ioc2.iommu_table, | ||
172 | tce_mem, tce_size, 0); | ||
173 | } | ||
174 | |||
175 | void __init pnv_pci_init_p5ioc2_hub(struct device_node *np) | ||
176 | { | ||
177 | struct device_node *phbn; | ||
178 | const u64 *prop64; | ||
179 | u64 hub_id; | ||
180 | void *tce_mem; | ||
181 | uint64_t tce_per_phb; | ||
182 | int64_t rc; | ||
183 | int phb_count = 0; | ||
184 | |||
185 | pr_info("Probing p5ioc2 IO-Hub %s\n", np->full_name); | ||
186 | |||
187 | prop64 = of_get_property(np, "ibm,opal-hubid", NULL); | ||
188 | if (!prop64) { | ||
189 | pr_err(" Missing \"ibm,opal-hubid\" property !\n"); | ||
190 | return; | ||
191 | } | ||
192 | hub_id = be64_to_cpup(prop64); | ||
193 | pr_info(" HUB-ID : 0x%016llx\n", hub_id); | ||
194 | |||
195 | /* Currently allocate 16M of TCE memory for every Hub | ||
196 | * | ||
197 | * XXX TODO: Make it chip local if possible | ||
198 | */ | ||
199 | tce_mem = __alloc_bootmem(P5IOC2_TCE_MEMORY, P5IOC2_TCE_MEMORY, | ||
200 | __pa(MAX_DMA_ADDRESS)); | ||
201 | if (!tce_mem) { | ||
202 | pr_err(" Failed to allocate TCE Memory !\n"); | ||
203 | return; | ||
204 | } | ||
205 | pr_debug(" TCE : 0x%016lx..0x%016lx\n", | ||
206 | __pa(tce_mem), __pa(tce_mem) + P5IOC2_TCE_MEMORY - 1); | ||
207 | rc = opal_pci_set_hub_tce_memory(hub_id, __pa(tce_mem), | ||
208 | P5IOC2_TCE_MEMORY); | ||
209 | if (rc != OPAL_SUCCESS) { | ||
210 | pr_err(" Failed to allocate TCE memory, OPAL error %lld\n", rc); | ||
211 | return; | ||
212 | } | ||
213 | |||
214 | /* Count child PHBs */ | ||
215 | for_each_child_of_node(np, phbn) { | ||
216 | if (of_device_is_compatible(phbn, "ibm,p5ioc2-pcix") || | ||
217 | of_device_is_compatible(phbn, "ibm,p5ioc2-pciex")) | ||
218 | phb_count++; | ||
219 | } | ||
220 | |||
221 | /* Calculate how much TCE space we can give per PHB */ | ||
222 | tce_per_phb = __rounddown_pow_of_two(P5IOC2_TCE_MEMORY / phb_count); | ||
223 | pr_info(" Allocating %lld MB of TCE memory per PHB\n", | ||
224 | tce_per_phb >> 20); | ||
225 | |||
226 | /* Initialize PHBs */ | ||
227 | for_each_child_of_node(np, phbn) { | ||
228 | if (of_device_is_compatible(phbn, "ibm,p5ioc2-pcix") || | ||
229 | of_device_is_compatible(phbn, "ibm,p5ioc2-pciex")) { | ||
230 | pnv_pci_init_p5ioc2_phb(phbn, tce_mem, tce_per_phb); | ||
231 | tce_mem += tce_per_phb; | ||
232 | } | ||
233 | } | ||
234 | } | ||
diff --git a/arch/powerpc/platforms/powernv/pci.c b/arch/powerpc/platforms/powernv/pci.c new file mode 100644 index 000000000000..85bb66d7f933 --- /dev/null +++ b/arch/powerpc/platforms/powernv/pci.c | |||
@@ -0,0 +1,427 @@ | |||
1 | /* | ||
2 | * Support PCI/PCIe on PowerNV platforms | ||
3 | * | ||
4 | * Currently supports only P5IOC2 | ||
5 | * | ||
6 | * Copyright 2011 Benjamin Herrenschmidt, IBM Corp. | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or | ||
9 | * modify it under the terms of the GNU General Public License | ||
10 | * as published by the Free Software Foundation; either version | ||
11 | * 2 of the License, or (at your option) any later version. | ||
12 | */ | ||
13 | |||
14 | #include <linux/kernel.h> | ||
15 | #include <linux/pci.h> | ||
16 | #include <linux/delay.h> | ||
17 | #include <linux/string.h> | ||
18 | #include <linux/init.h> | ||
19 | #include <linux/bootmem.h> | ||
20 | #include <linux/irq.h> | ||
21 | #include <linux/io.h> | ||
22 | #include <linux/msi.h> | ||
23 | |||
24 | #include <asm/sections.h> | ||
25 | #include <asm/io.h> | ||
26 | #include <asm/prom.h> | ||
27 | #include <asm/pci-bridge.h> | ||
28 | #include <asm/machdep.h> | ||
29 | #include <asm/ppc-pci.h> | ||
30 | #include <asm/opal.h> | ||
31 | #include <asm/iommu.h> | ||
32 | #include <asm/tce.h> | ||
33 | #include <asm/abs_addr.h> | ||
34 | |||
35 | #include "powernv.h" | ||
36 | #include "pci.h" | ||
37 | |||
38 | /* Delay in usec */ | ||
39 | #define PCI_RESET_DELAY_US 3000000 | ||
40 | |||
41 | #define cfg_dbg(fmt...) do { } while(0) | ||
42 | //#define cfg_dbg(fmt...) printk(fmt) | ||
43 | |||
44 | #ifdef CONFIG_PCI_MSI | ||
45 | static int pnv_msi_check_device(struct pci_dev* pdev, int nvec, int type) | ||
46 | { | ||
47 | struct pci_controller *hose = pci_bus_to_host(pdev->bus); | ||
48 | struct pnv_phb *phb = hose->private_data; | ||
49 | |||
50 | return (phb && phb->msi_map) ? 0 : -ENODEV; | ||
51 | } | ||
52 | |||
53 | static unsigned int pnv_get_one_msi(struct pnv_phb *phb) | ||
54 | { | ||
55 | unsigned int id; | ||
56 | |||
57 | spin_lock(&phb->lock); | ||
58 | id = find_next_zero_bit(phb->msi_map, phb->msi_count, phb->msi_next); | ||
59 | if (id >= phb->msi_count && phb->msi_next) | ||
60 | id = find_next_zero_bit(phb->msi_map, phb->msi_count, 0); | ||
61 | if (id >= phb->msi_count) { | ||
62 | spin_unlock(&phb->lock); | ||
63 | return 0; | ||
64 | } | ||
65 | __set_bit(id, phb->msi_map); | ||
66 | spin_unlock(&phb->lock); | ||
67 | return id + phb->msi_base; | ||
68 | } | ||
69 | |||
70 | static void pnv_put_msi(struct pnv_phb *phb, unsigned int hwirq) | ||
71 | { | ||
72 | unsigned int id; | ||
73 | |||
74 | if (WARN_ON(hwirq < phb->msi_base || | ||
75 | hwirq >= (phb->msi_base + phb->msi_count))) | ||
76 | return; | ||
77 | id = hwirq - phb->msi_base; | ||
78 | spin_lock(&phb->lock); | ||
79 | __clear_bit(id, phb->msi_map); | ||
80 | spin_unlock(&phb->lock); | ||
81 | } | ||
82 | |||
83 | static int pnv_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type) | ||
84 | { | ||
85 | struct pci_controller *hose = pci_bus_to_host(pdev->bus); | ||
86 | struct pnv_phb *phb = hose->private_data; | ||
87 | struct msi_desc *entry; | ||
88 | struct msi_msg msg; | ||
89 | unsigned int hwirq, virq; | ||
90 | int rc; | ||
91 | |||
92 | if (WARN_ON(!phb)) | ||
93 | return -ENODEV; | ||
94 | |||
95 | list_for_each_entry(entry, &pdev->msi_list, list) { | ||
96 | if (!entry->msi_attrib.is_64 && !phb->msi32_support) { | ||
97 | pr_warn("%s: Supports only 64-bit MSIs\n", | ||
98 | pci_name(pdev)); | ||
99 | return -ENXIO; | ||
100 | } | ||
101 | hwirq = pnv_get_one_msi(phb); | ||
102 | if (!hwirq) { | ||
103 | pr_warn("%s: Failed to find a free MSI\n", | ||
104 | pci_name(pdev)); | ||
105 | return -ENOSPC; | ||
106 | } | ||
107 | virq = irq_create_mapping(NULL, hwirq); | ||
108 | if (virq == NO_IRQ) { | ||
109 | pr_warn("%s: Failed to map MSI to linux irq\n", | ||
110 | pci_name(pdev)); | ||
111 | pnv_put_msi(phb, hwirq); | ||
112 | return -ENOMEM; | ||
113 | } | ||
114 | rc = phb->msi_setup(phb, pdev, hwirq, entry->msi_attrib.is_64, | ||
115 | &msg); | ||
116 | if (rc) { | ||
117 | pr_warn("%s: Failed to setup MSI\n", pci_name(pdev)); | ||
118 | irq_dispose_mapping(virq); | ||
119 | pnv_put_msi(phb, hwirq); | ||
120 | return rc; | ||
121 | } | ||
122 | irq_set_msi_desc(virq, entry); | ||
123 | write_msi_msg(virq, &msg); | ||
124 | } | ||
125 | return 0; | ||
126 | } | ||
127 | |||
128 | static void pnv_teardown_msi_irqs(struct pci_dev *pdev) | ||
129 | { | ||
130 | struct pci_controller *hose = pci_bus_to_host(pdev->bus); | ||
131 | struct pnv_phb *phb = hose->private_data; | ||
132 | struct msi_desc *entry; | ||
133 | |||
134 | if (WARN_ON(!phb)) | ||
135 | return; | ||
136 | |||
137 | list_for_each_entry(entry, &pdev->msi_list, list) { | ||
138 | if (entry->irq == NO_IRQ) | ||
139 | continue; | ||
140 | irq_set_msi_desc(entry->irq, NULL); | ||
141 | pnv_put_msi(phb, virq_to_hw(entry->irq)); | ||
142 | irq_dispose_mapping(entry->irq); | ||
143 | } | ||
144 | } | ||
145 | #endif /* CONFIG_PCI_MSI */ | ||
146 | |||
147 | static void pnv_pci_config_check_eeh(struct pnv_phb *phb, struct pci_bus *bus, | ||
148 | u32 bdfn) | ||
149 | { | ||
150 | s64 rc; | ||
151 | u8 fstate; | ||
152 | u16 pcierr; | ||
153 | u32 pe_no; | ||
154 | |||
155 | /* Get PE# if we support IODA */ | ||
156 | pe_no = phb->bdfn_to_pe ? phb->bdfn_to_pe(phb, bus, bdfn & 0xff) : 0; | ||
157 | |||
158 | /* Read freeze status */ | ||
159 | rc = opal_pci_eeh_freeze_status(phb->opal_id, pe_no, &fstate, &pcierr, | ||
160 | NULL); | ||
161 | if (rc) { | ||
162 | pr_warning("PCI %d: Failed to read EEH status for PE#%d," | ||
163 | " err %lld\n", phb->hose->global_number, pe_no, rc); | ||
164 | return; | ||
165 | } | ||
166 | cfg_dbg(" -> EEH check, bdfn=%04x PE%d fstate=%x\n", | ||
167 | bdfn, pe_no, fstate); | ||
168 | if (fstate != 0) { | ||
169 | rc = opal_pci_eeh_freeze_clear(phb->opal_id, pe_no, | ||
170 | OPAL_EEH_ACTION_CLEAR_FREEZE_ALL); | ||
171 | if (rc) { | ||
172 | pr_warning("PCI %d: Failed to clear EEH freeze state" | ||
173 | " for PE#%d, err %lld\n", | ||
174 | phb->hose->global_number, pe_no, rc); | ||
175 | } | ||
176 | } | ||
177 | } | ||
178 | |||
179 | static int pnv_pci_read_config(struct pci_bus *bus, | ||
180 | unsigned int devfn, | ||
181 | int where, int size, u32 *val) | ||
182 | { | ||
183 | struct pci_controller *hose = pci_bus_to_host(bus); | ||
184 | struct pnv_phb *phb = hose->private_data; | ||
185 | u32 bdfn = (((uint64_t)bus->number) << 8) | devfn; | ||
186 | s64 rc; | ||
187 | |||
188 | if (hose == NULL) | ||
189 | return PCIBIOS_DEVICE_NOT_FOUND; | ||
190 | |||
191 | switch (size) { | ||
192 | case 1: { | ||
193 | u8 v8; | ||
194 | rc = opal_pci_config_read_byte(phb->opal_id, bdfn, where, &v8); | ||
195 | *val = (rc == OPAL_SUCCESS) ? v8 : 0xff; | ||
196 | break; | ||
197 | } | ||
198 | case 2: { | ||
199 | u16 v16; | ||
200 | rc = opal_pci_config_read_half_word(phb->opal_id, bdfn, where, | ||
201 | &v16); | ||
202 | *val = (rc == OPAL_SUCCESS) ? v16 : 0xffff; | ||
203 | break; | ||
204 | } | ||
205 | case 4: { | ||
206 | u32 v32; | ||
207 | rc = opal_pci_config_read_word(phb->opal_id, bdfn, where, &v32); | ||
208 | *val = (rc == OPAL_SUCCESS) ? v32 : 0xffffffff; | ||
209 | break; | ||
210 | } | ||
211 | default: | ||
212 | return PCIBIOS_FUNC_NOT_SUPPORTED; | ||
213 | } | ||
214 | cfg_dbg("pnv_pci_read_config bus: %x devfn: %x +%x/%x -> %08x\n", | ||
215 | bus->number, devfn, where, size, *val); | ||
216 | |||
217 | /* Check if the PHB got frozen due to an error (no response) */ | ||
218 | pnv_pci_config_check_eeh(phb, bus, bdfn); | ||
219 | |||
220 | return PCIBIOS_SUCCESSFUL; | ||
221 | } | ||
222 | |||
223 | static int pnv_pci_write_config(struct pci_bus *bus, | ||
224 | unsigned int devfn, | ||
225 | int where, int size, u32 val) | ||
226 | { | ||
227 | struct pci_controller *hose = pci_bus_to_host(bus); | ||
228 | struct pnv_phb *phb = hose->private_data; | ||
229 | u32 bdfn = (((uint64_t)bus->number) << 8) | devfn; | ||
230 | |||
231 | if (hose == NULL) | ||
232 | return PCIBIOS_DEVICE_NOT_FOUND; | ||
233 | |||
234 | cfg_dbg("pnv_pci_write_config bus: %x devfn: %x +%x/%x -> %08x\n", | ||
235 | bus->number, devfn, where, size, val); | ||
236 | switch (size) { | ||
237 | case 1: | ||
238 | opal_pci_config_write_byte(phb->opal_id, bdfn, where, val); | ||
239 | break; | ||
240 | case 2: | ||
241 | opal_pci_config_write_half_word(phb->opal_id, bdfn, where, val); | ||
242 | break; | ||
243 | case 4: | ||
244 | opal_pci_config_write_word(phb->opal_id, bdfn, where, val); | ||
245 | break; | ||
246 | default: | ||
247 | return PCIBIOS_FUNC_NOT_SUPPORTED; | ||
248 | } | ||
249 | /* Check if the PHB got frozen due to an error (no response) */ | ||
250 | pnv_pci_config_check_eeh(phb, bus, bdfn); | ||
251 | |||
252 | return PCIBIOS_SUCCESSFUL; | ||
253 | } | ||
254 | |||
255 | struct pci_ops pnv_pci_ops = { | ||
256 | .read = pnv_pci_read_config, | ||
257 | .write = pnv_pci_write_config, | ||
258 | }; | ||
259 | |||
260 | static int pnv_tce_build(struct iommu_table *tbl, long index, long npages, | ||
261 | unsigned long uaddr, enum dma_data_direction direction, | ||
262 | struct dma_attrs *attrs) | ||
263 | { | ||
264 | u64 proto_tce; | ||
265 | u64 *tcep; | ||
266 | u64 rpn; | ||
267 | |||
268 | proto_tce = TCE_PCI_READ; // Read allowed | ||
269 | |||
270 | if (direction != DMA_TO_DEVICE) | ||
271 | proto_tce |= TCE_PCI_WRITE; | ||
272 | |||
273 | tcep = ((u64 *)tbl->it_base) + index; | ||
274 | |||
275 | while (npages--) { | ||
276 | /* can't move this out since we might cross LMB boundary */ | ||
277 | rpn = (virt_to_abs(uaddr)) >> TCE_SHIFT; | ||
278 | *tcep = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT; | ||
279 | |||
280 | uaddr += TCE_PAGE_SIZE; | ||
281 | tcep++; | ||
282 | } | ||
283 | return 0; | ||
284 | } | ||
285 | |||
286 | static void pnv_tce_free(struct iommu_table *tbl, long index, long npages) | ||
287 | { | ||
288 | u64 *tcep = ((u64 *)tbl->it_base) + index; | ||
289 | |||
290 | while (npages--) | ||
291 | *(tcep++) = 0; | ||
292 | } | ||
293 | |||
294 | void pnv_pci_setup_iommu_table(struct iommu_table *tbl, | ||
295 | void *tce_mem, u64 tce_size, | ||
296 | u64 dma_offset) | ||
297 | { | ||
298 | tbl->it_blocksize = 16; | ||
299 | tbl->it_base = (unsigned long)tce_mem; | ||
300 | tbl->it_offset = dma_offset >> IOMMU_PAGE_SHIFT; | ||
301 | tbl->it_index = 0; | ||
302 | tbl->it_size = tce_size >> 3; | ||
303 | tbl->it_busno = 0; | ||
304 | tbl->it_type = TCE_PCI; | ||
305 | } | ||
306 | |||
307 | static struct iommu_table * __devinit | ||
308 | pnv_pci_setup_bml_iommu(struct pci_controller *hose) | ||
309 | { | ||
310 | struct iommu_table *tbl; | ||
311 | const __be64 *basep; | ||
312 | const __be32 *sizep; | ||
313 | |||
314 | basep = of_get_property(hose->dn, "linux,tce-base", NULL); | ||
315 | sizep = of_get_property(hose->dn, "linux,tce-size", NULL); | ||
316 | if (basep == NULL || sizep == NULL) { | ||
317 | pr_err("PCI: %s has missing tce entries !\n", hose->dn->full_name); | ||
318 | return NULL; | ||
319 | } | ||
320 | tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL, hose->node); | ||
321 | if (WARN_ON(!tbl)) | ||
322 | return NULL; | ||
323 | pnv_pci_setup_iommu_table(tbl, __va(be64_to_cpup(basep)), | ||
324 | be32_to_cpup(sizep), 0); | ||
325 | iommu_init_table(tbl, hose->node); | ||
326 | return tbl; | ||
327 | } | ||
328 | |||
329 | static void __devinit pnv_pci_dma_fallback_setup(struct pci_controller *hose, | ||
330 | struct pci_dev *pdev) | ||
331 | { | ||
332 | struct device_node *np = pci_bus_to_OF_node(hose->bus); | ||
333 | struct pci_dn *pdn; | ||
334 | |||
335 | if (np == NULL) | ||
336 | return; | ||
337 | pdn = PCI_DN(np); | ||
338 | if (!pdn->iommu_table) | ||
339 | pdn->iommu_table = pnv_pci_setup_bml_iommu(hose); | ||
340 | if (!pdn->iommu_table) | ||
341 | return; | ||
342 | set_iommu_table_base(&pdev->dev, pdn->iommu_table); | ||
343 | } | ||
344 | |||
345 | static void __devinit pnv_pci_dma_dev_setup(struct pci_dev *pdev) | ||
346 | { | ||
347 | struct pci_controller *hose = pci_bus_to_host(pdev->bus); | ||
348 | struct pnv_phb *phb = hose->private_data; | ||
349 | |||
350 | /* If we have no phb structure, try to setup a fallback based on | ||
351 | * the device-tree (RTAS PCI for example) | ||
352 | */ | ||
353 | if (phb && phb->dma_dev_setup) | ||
354 | phb->dma_dev_setup(phb, pdev); | ||
355 | else | ||
356 | pnv_pci_dma_fallback_setup(hose, pdev); | ||
357 | } | ||
358 | |||
359 | static int pnv_pci_probe_mode(struct pci_bus *bus) | ||
360 | { | ||
361 | struct pci_controller *hose = pci_bus_to_host(bus); | ||
362 | const __be64 *tstamp; | ||
363 | u64 now, target; | ||
364 | |||
365 | |||
366 | /* We hijack this as a way to ensure we have waited long | ||
367 | * enough since the reset was lifted on the PCI bus | ||
368 | */ | ||
369 | if (bus != hose->bus) | ||
370 | return PCI_PROBE_NORMAL; | ||
371 | tstamp = of_get_property(hose->dn, "reset-clear-timestamp", NULL); | ||
372 | if (!tstamp || !*tstamp) | ||
373 | return PCI_PROBE_NORMAL; | ||
374 | |||
375 | now = mftb() / tb_ticks_per_usec; | ||
376 | target = (be64_to_cpup(tstamp) / tb_ticks_per_usec) | ||
377 | + PCI_RESET_DELAY_US; | ||
378 | |||
379 | pr_devel("pci %04d: Reset target: 0x%llx now: 0x%llx\n", | ||
380 | hose->global_number, target, now); | ||
381 | |||
382 | if (now < target) | ||
383 | msleep((target - now + 999) / 1000); | ||
384 | |||
385 | return PCI_PROBE_NORMAL; | ||
386 | } | ||
387 | |||
388 | void __init pnv_pci_init(void) | ||
389 | { | ||
390 | struct device_node *np; | ||
391 | |||
392 | pci_set_flags(PCI_CAN_SKIP_ISA_ALIGN); | ||
393 | |||
394 | /* We do not want to just probe */ | ||
395 | pci_probe_only = 0; | ||
396 | |||
397 | /* OPAL absent, try POPAL first then RTAS detection of PHBs */ | ||
398 | if (!firmware_has_feature(FW_FEATURE_OPAL)) { | ||
399 | #ifdef CONFIG_PPC_POWERNV_RTAS | ||
400 | init_pci_config_tokens(); | ||
401 | find_and_init_phbs(); | ||
402 | #endif /* CONFIG_PPC_POWERNV_RTAS */ | ||
403 | } else { | ||
404 | /* OPAL is here, do our normal stuff */ | ||
405 | |||
406 | /* Look for p5ioc2 IO-Hubs */ | ||
407 | for_each_compatible_node(np, NULL, "ibm,p5ioc2") | ||
408 | pnv_pci_init_p5ioc2_hub(np); | ||
409 | } | ||
410 | |||
411 | /* Setup the linkage between OF nodes and PHBs */ | ||
412 | pci_devs_phb_init(); | ||
413 | |||
414 | /* Configure IOMMU DMA hooks */ | ||
415 | ppc_md.pci_dma_dev_setup = pnv_pci_dma_dev_setup; | ||
416 | ppc_md.tce_build = pnv_tce_build; | ||
417 | ppc_md.tce_free = pnv_tce_free; | ||
418 | ppc_md.pci_probe_mode = pnv_pci_probe_mode; | ||
419 | set_pci_dma_ops(&dma_iommu_ops); | ||
420 | |||
421 | /* Configure MSIs */ | ||
422 | #ifdef CONFIG_PCI_MSI | ||
423 | ppc_md.msi_check_device = pnv_msi_check_device; | ||
424 | ppc_md.setup_msi_irqs = pnv_setup_msi_irqs; | ||
425 | ppc_md.teardown_msi_irqs = pnv_teardown_msi_irqs; | ||
426 | #endif | ||
427 | } | ||
diff --git a/arch/powerpc/platforms/powernv/pci.h b/arch/powerpc/platforms/powernv/pci.h new file mode 100644 index 000000000000..d4dbc4950936 --- /dev/null +++ b/arch/powerpc/platforms/powernv/pci.h | |||
@@ -0,0 +1,48 @@ | |||
1 | #ifndef __POWERNV_PCI_H | ||
2 | #define __POWERNV_PCI_H | ||
3 | |||
4 | struct pci_dn; | ||
5 | |||
6 | enum pnv_phb_type { | ||
7 | PNV_PHB_P5IOC2, | ||
8 | PNV_PHB_IODA1, | ||
9 | PNV_PHB_IODA2, | ||
10 | }; | ||
11 | |||
12 | struct pnv_phb { | ||
13 | struct pci_controller *hose; | ||
14 | enum pnv_phb_type type; | ||
15 | u64 opal_id; | ||
16 | void __iomem *regs; | ||
17 | spinlock_t lock; | ||
18 | |||
19 | #ifdef CONFIG_PCI_MSI | ||
20 | unsigned long *msi_map; | ||
21 | unsigned int msi_base; | ||
22 | unsigned int msi_count; | ||
23 | unsigned int msi_next; | ||
24 | unsigned int msi32_support; | ||
25 | #endif | ||
26 | int (*msi_setup)(struct pnv_phb *phb, struct pci_dev *dev, | ||
27 | unsigned int hwirq, unsigned int is_64, | ||
28 | struct msi_msg *msg); | ||
29 | void (*dma_dev_setup)(struct pnv_phb *phb, struct pci_dev *pdev); | ||
30 | void (*fixup_phb)(struct pci_controller *hose); | ||
31 | u32 (*bdfn_to_pe)(struct pnv_phb *phb, struct pci_bus *bus, u32 devfn); | ||
32 | |||
33 | union { | ||
34 | struct { | ||
35 | struct iommu_table iommu_table; | ||
36 | } p5ioc2; | ||
37 | }; | ||
38 | }; | ||
39 | |||
40 | extern struct pci_ops pnv_pci_ops; | ||
41 | |||
42 | extern void pnv_pci_setup_iommu_table(struct iommu_table *tbl, | ||
43 | void *tce_mem, u64 tce_size, | ||
44 | u64 dma_offset); | ||
45 | extern void pnv_pci_init_p5ioc2_hub(struct device_node *np); | ||
46 | |||
47 | |||
48 | #endif /* __POWERNV_PCI_H */ | ||
diff --git a/arch/powerpc/platforms/powernv/powernv.h b/arch/powerpc/platforms/powernv/powernv.h new file mode 100644 index 000000000000..8a9df7f9667e --- /dev/null +++ b/arch/powerpc/platforms/powernv/powernv.h | |||
@@ -0,0 +1,16 @@ | |||
1 | #ifndef _POWERNV_H | ||
2 | #define _POWERNV_H | ||
3 | |||
4 | #ifdef CONFIG_SMP | ||
5 | extern void pnv_smp_init(void); | ||
6 | #else | ||
7 | static inline void pnv_smp_init(void) { } | ||
8 | #endif | ||
9 | |||
10 | #ifdef CONFIG_PCI | ||
11 | extern void pnv_pci_init(void); | ||
12 | #else | ||
13 | static inline void pnv_pci_init(void) { } | ||
14 | #endif | ||
15 | |||
16 | #endif /* _POWERNV_H */ | ||
diff --git a/arch/powerpc/platforms/powernv/setup.c b/arch/powerpc/platforms/powernv/setup.c new file mode 100644 index 000000000000..467bd4ac6824 --- /dev/null +++ b/arch/powerpc/platforms/powernv/setup.c | |||
@@ -0,0 +1,196 @@ | |||
1 | /* | ||
2 | * PowerNV setup code. | ||
3 | * | ||
4 | * Copyright 2011 IBM Corp. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #undef DEBUG | ||
13 | |||
14 | #include <linux/cpu.h> | ||
15 | #include <linux/errno.h> | ||
16 | #include <linux/sched.h> | ||
17 | #include <linux/kernel.h> | ||
18 | #include <linux/tty.h> | ||
19 | #include <linux/reboot.h> | ||
20 | #include <linux/init.h> | ||
21 | #include <linux/console.h> | ||
22 | #include <linux/delay.h> | ||
23 | #include <linux/irq.h> | ||
24 | #include <linux/seq_file.h> | ||
25 | #include <linux/of.h> | ||
26 | #include <linux/interrupt.h> | ||
27 | #include <linux/bug.h> | ||
28 | |||
29 | #include <asm/machdep.h> | ||
30 | #include <asm/firmware.h> | ||
31 | #include <asm/xics.h> | ||
32 | #include <asm/rtas.h> | ||
33 | #include <asm/opal.h> | ||
34 | #include <asm/xics.h> | ||
35 | |||
36 | #include "powernv.h" | ||
37 | |||
38 | static void __init pnv_setup_arch(void) | ||
39 | { | ||
40 | /* Initialize SMP */ | ||
41 | pnv_smp_init(); | ||
42 | |||
43 | /* Setup PCI */ | ||
44 | pnv_pci_init(); | ||
45 | |||
46 | /* Setup RTC and NVRAM callbacks */ | ||
47 | if (firmware_has_feature(FW_FEATURE_OPAL)) | ||
48 | opal_nvram_init(); | ||
49 | |||
50 | /* Enable NAP mode */ | ||
51 | powersave_nap = 1; | ||
52 | |||
53 | /* XXX PMCS */ | ||
54 | } | ||
55 | |||
56 | static void __init pnv_init_early(void) | ||
57 | { | ||
58 | #ifdef CONFIG_HVC_OPAL | ||
59 | if (firmware_has_feature(FW_FEATURE_OPAL)) | ||
60 | hvc_opal_init_early(); | ||
61 | else | ||
62 | #endif | ||
63 | add_preferred_console("hvc", 0, NULL); | ||
64 | } | ||
65 | |||
66 | static void __init pnv_init_IRQ(void) | ||
67 | { | ||
68 | xics_init(); | ||
69 | |||
70 | WARN_ON(!ppc_md.get_irq); | ||
71 | } | ||
72 | |||
73 | static void pnv_show_cpuinfo(struct seq_file *m) | ||
74 | { | ||
75 | struct device_node *root; | ||
76 | const char *model = ""; | ||
77 | |||
78 | root = of_find_node_by_path("/"); | ||
79 | if (root) | ||
80 | model = of_get_property(root, "model", NULL); | ||
81 | seq_printf(m, "machine\t\t: PowerNV %s\n", model); | ||
82 | if (firmware_has_feature(FW_FEATURE_OPALv2)) | ||
83 | seq_printf(m, "firmware\t: OPAL v2\n"); | ||
84 | else if (firmware_has_feature(FW_FEATURE_OPAL)) | ||
85 | seq_printf(m, "firmware\t: OPAL v1\n"); | ||
86 | else | ||
87 | seq_printf(m, "firmware\t: BML\n"); | ||
88 | of_node_put(root); | ||
89 | } | ||
90 | |||
91 | static void __noreturn pnv_restart(char *cmd) | ||
92 | { | ||
93 | long rc = OPAL_BUSY; | ||
94 | |||
95 | while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) { | ||
96 | rc = opal_cec_reboot(); | ||
97 | if (rc == OPAL_BUSY_EVENT) | ||
98 | opal_poll_events(NULL); | ||
99 | else | ||
100 | mdelay(10); | ||
101 | } | ||
102 | for (;;) | ||
103 | opal_poll_events(NULL); | ||
104 | } | ||
105 | |||
106 | static void __noreturn pnv_power_off(void) | ||
107 | { | ||
108 | long rc = OPAL_BUSY; | ||
109 | |||
110 | while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) { | ||
111 | rc = opal_cec_power_down(0); | ||
112 | if (rc == OPAL_BUSY_EVENT) | ||
113 | opal_poll_events(NULL); | ||
114 | else | ||
115 | mdelay(10); | ||
116 | } | ||
117 | for (;;) | ||
118 | opal_poll_events(NULL); | ||
119 | } | ||
120 | |||
121 | static void __noreturn pnv_halt(void) | ||
122 | { | ||
123 | pnv_power_off(); | ||
124 | } | ||
125 | |||
126 | static void pnv_progress(char *s, unsigned short hex) | ||
127 | { | ||
128 | } | ||
129 | |||
130 | #ifdef CONFIG_KEXEC | ||
131 | static void pnv_kexec_cpu_down(int crash_shutdown, int secondary) | ||
132 | { | ||
133 | xics_kexec_teardown_cpu(secondary); | ||
134 | } | ||
135 | #endif /* CONFIG_KEXEC */ | ||
136 | |||
137 | static void __init pnv_setup_machdep_opal(void) | ||
138 | { | ||
139 | ppc_md.get_boot_time = opal_get_boot_time; | ||
140 | ppc_md.get_rtc_time = opal_get_rtc_time; | ||
141 | ppc_md.set_rtc_time = opal_set_rtc_time; | ||
142 | ppc_md.restart = pnv_restart; | ||
143 | ppc_md.power_off = pnv_power_off; | ||
144 | ppc_md.halt = pnv_halt; | ||
145 | ppc_md.machine_check_exception = opal_machine_check; | ||
146 | } | ||
147 | |||
148 | #ifdef CONFIG_PPC_POWERNV_RTAS | ||
149 | static void __init pnv_setup_machdep_rtas(void) | ||
150 | { | ||
151 | if (rtas_token("get-time-of-day") != RTAS_UNKNOWN_SERVICE) { | ||
152 | ppc_md.get_boot_time = rtas_get_boot_time; | ||
153 | ppc_md.get_rtc_time = rtas_get_rtc_time; | ||
154 | ppc_md.set_rtc_time = rtas_set_rtc_time; | ||
155 | } | ||
156 | ppc_md.restart = rtas_restart; | ||
157 | ppc_md.power_off = rtas_power_off; | ||
158 | ppc_md.halt = rtas_halt; | ||
159 | } | ||
160 | #endif /* CONFIG_PPC_POWERNV_RTAS */ | ||
161 | |||
162 | static int __init pnv_probe(void) | ||
163 | { | ||
164 | unsigned long root = of_get_flat_dt_root(); | ||
165 | |||
166 | if (!of_flat_dt_is_compatible(root, "ibm,powernv")) | ||
167 | return 0; | ||
168 | |||
169 | hpte_init_native(); | ||
170 | |||
171 | if (firmware_has_feature(FW_FEATURE_OPAL)) | ||
172 | pnv_setup_machdep_opal(); | ||
173 | #ifdef CONFIG_PPC_POWERNV_RTAS | ||
174 | else if (rtas.base) | ||
175 | pnv_setup_machdep_rtas(); | ||
176 | #endif /* CONFIG_PPC_POWERNV_RTAS */ | ||
177 | |||
178 | pr_debug("PowerNV detected !\n"); | ||
179 | |||
180 | return 1; | ||
181 | } | ||
182 | |||
183 | define_machine(powernv) { | ||
184 | .name = "PowerNV", | ||
185 | .probe = pnv_probe, | ||
186 | .init_early = pnv_init_early, | ||
187 | .setup_arch = pnv_setup_arch, | ||
188 | .init_IRQ = pnv_init_IRQ, | ||
189 | .show_cpuinfo = pnv_show_cpuinfo, | ||
190 | .progress = pnv_progress, | ||
191 | .power_save = power7_idle, | ||
192 | .calibrate_decr = generic_calibrate_decr, | ||
193 | #ifdef CONFIG_KEXEC | ||
194 | .kexec_cpu_down = pnv_kexec_cpu_down, | ||
195 | #endif | ||
196 | }; | ||
diff --git a/arch/powerpc/platforms/powernv/smp.c b/arch/powerpc/platforms/powernv/smp.c new file mode 100644 index 000000000000..e87736685243 --- /dev/null +++ b/arch/powerpc/platforms/powernv/smp.c | |||
@@ -0,0 +1,182 @@ | |||
1 | /* | ||
2 | * SMP support for PowerNV machines. | ||
3 | * | ||
4 | * Copyright 2011 IBM Corp. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/module.h> | ||
14 | #include <linux/sched.h> | ||
15 | #include <linux/smp.h> | ||
16 | #include <linux/interrupt.h> | ||
17 | #include <linux/delay.h> | ||
18 | #include <linux/init.h> | ||
19 | #include <linux/spinlock.h> | ||
20 | #include <linux/cpu.h> | ||
21 | |||
22 | #include <asm/irq.h> | ||
23 | #include <asm/smp.h> | ||
24 | #include <asm/paca.h> | ||
25 | #include <asm/machdep.h> | ||
26 | #include <asm/cputable.h> | ||
27 | #include <asm/firmware.h> | ||
28 | #include <asm/system.h> | ||
29 | #include <asm/rtas.h> | ||
30 | #include <asm/vdso_datapage.h> | ||
31 | #include <asm/cputhreads.h> | ||
32 | #include <asm/xics.h> | ||
33 | #include <asm/opal.h> | ||
34 | |||
35 | #include "powernv.h" | ||
36 | |||
37 | #ifdef DEBUG | ||
38 | #include <asm/udbg.h> | ||
39 | #define DBG(fmt...) udbg_printf(fmt) | ||
40 | #else | ||
41 | #define DBG(fmt...) | ||
42 | #endif | ||
43 | |||
44 | static void __cpuinit pnv_smp_setup_cpu(int cpu) | ||
45 | { | ||
46 | if (cpu != boot_cpuid) | ||
47 | xics_setup_cpu(); | ||
48 | } | ||
49 | |||
50 | static int pnv_smp_cpu_bootable(unsigned int nr) | ||
51 | { | ||
52 | /* Special case - we inhibit secondary thread startup | ||
53 | * during boot if the user requests it. | ||
54 | */ | ||
55 | if (system_state < SYSTEM_RUNNING && cpu_has_feature(CPU_FTR_SMT)) { | ||
56 | if (!smt_enabled_at_boot && cpu_thread_in_core(nr) != 0) | ||
57 | return 0; | ||
58 | if (smt_enabled_at_boot | ||
59 | && cpu_thread_in_core(nr) >= smt_enabled_at_boot) | ||
60 | return 0; | ||
61 | } | ||
62 | |||
63 | return 1; | ||
64 | } | ||
65 | |||
66 | int __devinit pnv_smp_kick_cpu(int nr) | ||
67 | { | ||
68 | unsigned int pcpu = get_hard_smp_processor_id(nr); | ||
69 | unsigned long start_here = __pa(*((unsigned long *) | ||
70 | generic_secondary_smp_init)); | ||
71 | long rc; | ||
72 | |||
73 | BUG_ON(nr < 0 || nr >= NR_CPUS); | ||
74 | |||
75 | /* On OPAL v2 the CPU are still spinning inside OPAL itself, | ||
76 | * get them back now | ||
77 | */ | ||
78 | if (firmware_has_feature(FW_FEATURE_OPALv2)) { | ||
79 | pr_devel("OPAL: Starting CPU %d (HW 0x%x)...\n", nr, pcpu); | ||
80 | rc = opal_start_cpu(pcpu, start_here); | ||
81 | if (rc != OPAL_SUCCESS) | ||
82 | pr_warn("OPAL Error %ld starting CPU %d\n", | ||
83 | rc, nr); | ||
84 | } | ||
85 | return smp_generic_kick_cpu(nr); | ||
86 | } | ||
87 | |||
88 | #ifdef CONFIG_HOTPLUG_CPU | ||
89 | |||
90 | static int pnv_smp_cpu_disable(void) | ||
91 | { | ||
92 | int cpu = smp_processor_id(); | ||
93 | |||
94 | /* This is identical to pSeries... might consolidate by | ||
95 | * moving migrate_irqs_away to a ppc_md with default to | ||
96 | * the generic fixup_irqs. --BenH. | ||
97 | */ | ||
98 | set_cpu_online(cpu, false); | ||
99 | vdso_data->processorCount--; | ||
100 | if (cpu == boot_cpuid) | ||
101 | boot_cpuid = cpumask_any(cpu_online_mask); | ||
102 | xics_migrate_irqs_away(); | ||
103 | return 0; | ||
104 | } | ||
105 | |||
106 | static void pnv_smp_cpu_kill_self(void) | ||
107 | { | ||
108 | unsigned int cpu; | ||
109 | |||
110 | /* If powersave_nap is enabled, use NAP mode, else just | ||
111 | * spin aimlessly | ||
112 | */ | ||
113 | if (!powersave_nap) { | ||
114 | generic_mach_cpu_die(); | ||
115 | return; | ||
116 | } | ||
117 | |||
118 | /* Standard hot unplug procedure */ | ||
119 | local_irq_disable(); | ||
120 | idle_task_exit(); | ||
121 | current->active_mm = NULL; /* for sanity */ | ||
122 | cpu = smp_processor_id(); | ||
123 | DBG("CPU%d offline\n", cpu); | ||
124 | generic_set_cpu_dead(cpu); | ||
125 | smp_wmb(); | ||
126 | |||
127 | /* We don't want to take decrementer interrupts while we are offline, | ||
128 | * so clear LPCR:PECE1. We keep PECE2 enabled. | ||
129 | */ | ||
130 | mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) & ~(u64)LPCR_PECE1); | ||
131 | while (!generic_check_cpu_restart(cpu)) { | ||
132 | power7_idle(); | ||
133 | if (!generic_check_cpu_restart(cpu)) { | ||
134 | DBG("CPU%d Unexpected exit while offline !\n", cpu); | ||
135 | /* We may be getting an IPI, so we re-enable | ||
136 | * interrupts to process it, it will be ignored | ||
137 | * since we aren't online (hopefully) | ||
138 | */ | ||
139 | local_irq_enable(); | ||
140 | local_irq_disable(); | ||
141 | } | ||
142 | } | ||
143 | mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) | LPCR_PECE1); | ||
144 | DBG("CPU%d coming online...\n", cpu); | ||
145 | } | ||
146 | |||
147 | #endif /* CONFIG_HOTPLUG_CPU */ | ||
148 | |||
149 | static struct smp_ops_t pnv_smp_ops = { | ||
150 | .message_pass = smp_muxed_ipi_message_pass, | ||
151 | .cause_ipi = NULL, /* Filled at runtime by xics_smp_probe() */ | ||
152 | .probe = xics_smp_probe, | ||
153 | .kick_cpu = pnv_smp_kick_cpu, | ||
154 | .setup_cpu = pnv_smp_setup_cpu, | ||
155 | .cpu_bootable = pnv_smp_cpu_bootable, | ||
156 | #ifdef CONFIG_HOTPLUG_CPU | ||
157 | .cpu_disable = pnv_smp_cpu_disable, | ||
158 | .cpu_die = generic_cpu_die, | ||
159 | #endif /* CONFIG_HOTPLUG_CPU */ | ||
160 | }; | ||
161 | |||
162 | /* This is called very early during platform setup_arch */ | ||
163 | void __init pnv_smp_init(void) | ||
164 | { | ||
165 | smp_ops = &pnv_smp_ops; | ||
166 | |||
167 | /* XXX We don't yet have a proper entry point from HAL, for | ||
168 | * now we rely on kexec-style entry from BML | ||
169 | */ | ||
170 | |||
171 | #ifdef CONFIG_PPC_RTAS | ||
172 | /* Non-lpar has additional take/give timebase */ | ||
173 | if (rtas_token("freeze-time-base") != RTAS_UNKNOWN_SERVICE) { | ||
174 | smp_ops->give_timebase = rtas_give_timebase; | ||
175 | smp_ops->take_timebase = rtas_take_timebase; | ||
176 | } | ||
177 | #endif /* CONFIG_PPC_RTAS */ | ||
178 | |||
179 | #ifdef CONFIG_HOTPLUG_CPU | ||
180 | ppc_md.cpu_die = pnv_smp_cpu_kill_self; | ||
181 | #endif | ||
182 | } | ||
diff --git a/arch/powerpc/platforms/prep/Kconfig b/arch/powerpc/platforms/prep/Kconfig index f0536c7cda9f..1547f66235d9 100644 --- a/arch/powerpc/platforms/prep/Kconfig +++ b/arch/powerpc/platforms/prep/Kconfig | |||
@@ -21,12 +21,3 @@ config PREP_RESIDUAL | |||
21 | or pass the 'noresidual' option to the kernel. | 21 | or pass the 'noresidual' option to the kernel. |
22 | 22 | ||
23 | If you are running a PReP system, say Y here, otherwise say N. | 23 | If you are running a PReP system, say Y here, otherwise say N. |
24 | |||
25 | config PROC_PREPRESIDUAL | ||
26 | bool "Support for reading of PReP Residual Data in /proc" | ||
27 | depends on PREP_RESIDUAL && PROC_FS | ||
28 | help | ||
29 | Enabling this option will create a /proc/residual file which allows | ||
30 | you to get at the residual data on PReP systems. You will need a tool | ||
31 | (lsresidual) to parse it. If you aren't on a PReP system, you don't | ||
32 | want this. | ||
diff --git a/arch/powerpc/platforms/ps3/Kconfig b/arch/powerpc/platforms/ps3/Kconfig index dfe316b161a9..476d9d9b2405 100644 --- a/arch/powerpc/platforms/ps3/Kconfig +++ b/arch/powerpc/platforms/ps3/Kconfig | |||
@@ -148,4 +148,16 @@ config PS3_LPM | |||
148 | profiling support of the Cell processor with programs like | 148 | profiling support of the Cell processor with programs like |
149 | oprofile and perfmon2, then say Y or M, otherwise say N. | 149 | oprofile and perfmon2, then say Y or M, otherwise say N. |
150 | 150 | ||
151 | config PS3GELIC_UDBG | ||
152 | bool "PS3 udbg output via UDP broadcasts on Ethernet" | ||
153 | depends on PPC_PS3 | ||
154 | help | ||
155 | Enables udbg early debugging output by sending broadcast UDP | ||
156 | via the Ethernet port (UDP port number 18194). | ||
157 | |||
158 | This driver uses a trivial implementation and is independent | ||
159 | from the main network driver. | ||
160 | |||
161 | If in doubt, say N here. | ||
162 | |||
151 | endmenu | 163 | endmenu |
diff --git a/arch/powerpc/platforms/ps3/Makefile b/arch/powerpc/platforms/ps3/Makefile index ac1bdf844eca..02b9e636dab7 100644 --- a/arch/powerpc/platforms/ps3/Makefile +++ b/arch/powerpc/platforms/ps3/Makefile | |||
@@ -2,6 +2,7 @@ obj-y += setup.o mm.o time.o hvcall.o htab.o repository.o | |||
2 | obj-y += interrupt.o exports.o os-area.o | 2 | obj-y += interrupt.o exports.o os-area.o |
3 | obj-y += system-bus.o | 3 | obj-y += system-bus.o |
4 | 4 | ||
5 | obj-$(CONFIG_PS3GELIC_UDBG) += gelic_udbg.o | ||
5 | obj-$(CONFIG_SMP) += smp.o | 6 | obj-$(CONFIG_SMP) += smp.o |
6 | obj-$(CONFIG_SPU_BASE) += spu.o | 7 | obj-$(CONFIG_SPU_BASE) += spu.o |
7 | obj-y += device-init.o | 8 | obj-y += device-init.o |
diff --git a/arch/powerpc/platforms/ps3/device-init.c b/arch/powerpc/platforms/ps3/device-init.c index 6c4b5837fc8a..3f175e8aedb4 100644 --- a/arch/powerpc/platforms/ps3/device-init.c +++ b/arch/powerpc/platforms/ps3/device-init.c | |||
@@ -825,7 +825,7 @@ static int ps3_probe_thread(void *data) | |||
825 | 825 | ||
826 | spin_lock_init(&dev.lock); | 826 | spin_lock_init(&dev.lock); |
827 | 827 | ||
828 | res = request_irq(irq, ps3_notification_interrupt, IRQF_DISABLED, | 828 | res = request_irq(irq, ps3_notification_interrupt, 0, |
829 | "ps3_notification", &dev); | 829 | "ps3_notification", &dev); |
830 | if (res) { | 830 | if (res) { |
831 | pr_err("%s:%u: request_irq failed %d\n", __func__, __LINE__, | 831 | pr_err("%s:%u: request_irq failed %d\n", __func__, __LINE__, |
diff --git a/arch/powerpc/platforms/ps3/exports.c b/arch/powerpc/platforms/ps3/exports.c index a7e8ffd24a65..7df5b7d8fc66 100644 --- a/arch/powerpc/platforms/ps3/exports.c +++ b/arch/powerpc/platforms/ps3/exports.c | |||
@@ -18,8 +18,6 @@ | |||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/module.h> | ||
22 | |||
23 | #define LV1_CALL(name, in, out, num) \ | 21 | #define LV1_CALL(name, in, out, num) \ |
24 | extern s64 _lv1_##name(LV1_##in##_IN_##out##_OUT_ARG_DECL); \ | 22 | extern s64 _lv1_##name(LV1_##in##_IN_##out##_OUT_ARG_DECL); \ |
25 | EXPORT_SYMBOL(_lv1_##name); | 23 | EXPORT_SYMBOL(_lv1_##name); |
diff --git a/arch/powerpc/platforms/ps3/gelic_udbg.c b/arch/powerpc/platforms/ps3/gelic_udbg.c new file mode 100644 index 000000000000..20b46a19a48f --- /dev/null +++ b/arch/powerpc/platforms/ps3/gelic_udbg.c | |||
@@ -0,0 +1,273 @@ | |||
1 | /* | ||
2 | * udbg debug output routine via GELIC UDP broadcasts | ||
3 | * | ||
4 | * Copyright (C) 2007 Sony Computer Entertainment Inc. | ||
5 | * Copyright 2006, 2007 Sony Corporation | ||
6 | * Copyright (C) 2010 Hector Martin <hector@marcansoft.com> | ||
7 | * Copyright (C) 2011 Andre Heider <a.heider@gmail.com> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or | ||
10 | * modify it under the terms of the GNU General Public License | ||
11 | * as published by the Free Software Foundation; either version 2 | ||
12 | * of the License, or (at your option) any later version. | ||
13 | * | ||
14 | */ | ||
15 | |||
16 | #include <asm/io.h> | ||
17 | #include <asm/udbg.h> | ||
18 | #include <asm/lv1call.h> | ||
19 | |||
20 | #define GELIC_BUS_ID 1 | ||
21 | #define GELIC_DEVICE_ID 0 | ||
22 | #define GELIC_DEBUG_PORT 18194 | ||
23 | #define GELIC_MAX_MESSAGE_SIZE 1000 | ||
24 | |||
25 | #define GELIC_LV1_GET_MAC_ADDRESS 1 | ||
26 | #define GELIC_LV1_GET_VLAN_ID 4 | ||
27 | #define GELIC_LV1_VLAN_TX_ETHERNET_0 2 | ||
28 | |||
29 | #define GELIC_DESCR_DMA_STAT_MASK 0xf0000000 | ||
30 | #define GELIC_DESCR_DMA_CARDOWNED 0xa0000000 | ||
31 | |||
32 | #define GELIC_DESCR_TX_DMA_IKE 0x00080000 | ||
33 | #define GELIC_DESCR_TX_DMA_NO_CHKSUM 0x00000000 | ||
34 | #define GELIC_DESCR_TX_DMA_FRAME_TAIL 0x00040000 | ||
35 | |||
36 | #define GELIC_DESCR_DMA_CMD_NO_CHKSUM (GELIC_DESCR_DMA_CARDOWNED | \ | ||
37 | GELIC_DESCR_TX_DMA_IKE | \ | ||
38 | GELIC_DESCR_TX_DMA_NO_CHKSUM) | ||
39 | |||
40 | static u64 bus_addr; | ||
41 | |||
42 | struct gelic_descr { | ||
43 | /* as defined by the hardware */ | ||
44 | __be32 buf_addr; | ||
45 | __be32 buf_size; | ||
46 | __be32 next_descr_addr; | ||
47 | __be32 dmac_cmd_status; | ||
48 | __be32 result_size; | ||
49 | __be32 valid_size; /* all zeroes for tx */ | ||
50 | __be32 data_status; | ||
51 | __be32 data_error; /* all zeroes for tx */ | ||
52 | } __attribute__((aligned(32))); | ||
53 | |||
54 | struct debug_block { | ||
55 | struct gelic_descr descr; | ||
56 | u8 pkt[1520]; | ||
57 | } __packed; | ||
58 | |||
59 | struct ethhdr { | ||
60 | u8 dest[6]; | ||
61 | u8 src[6]; | ||
62 | u16 type; | ||
63 | } __packed; | ||
64 | |||
65 | struct vlantag { | ||
66 | u16 vlan; | ||
67 | u16 subtype; | ||
68 | } __packed; | ||
69 | |||
70 | struct iphdr { | ||
71 | u8 ver_len; | ||
72 | u8 dscp_ecn; | ||
73 | u16 total_length; | ||
74 | u16 ident; | ||
75 | u16 frag_off_flags; | ||
76 | u8 ttl; | ||
77 | u8 proto; | ||
78 | u16 checksum; | ||
79 | u32 src; | ||
80 | u32 dest; | ||
81 | } __packed; | ||
82 | |||
83 | struct udphdr { | ||
84 | u16 src; | ||
85 | u16 dest; | ||
86 | u16 len; | ||
87 | u16 checksum; | ||
88 | } __packed; | ||
89 | |||
90 | static __iomem struct ethhdr *h_eth; | ||
91 | static __iomem struct vlantag *h_vlan; | ||
92 | static __iomem struct iphdr *h_ip; | ||
93 | static __iomem struct udphdr *h_udp; | ||
94 | |||
95 | static __iomem char *pmsg; | ||
96 | static __iomem char *pmsgc; | ||
97 | |||
98 | static __iomem struct debug_block dbg __attribute__((aligned(32))); | ||
99 | |||
100 | static int header_size; | ||
101 | |||
102 | static void map_dma_mem(int bus_id, int dev_id, void *start, size_t len, | ||
103 | u64 *real_bus_addr) | ||
104 | { | ||
105 | s64 result; | ||
106 | u64 real_addr = ((u64)start) & 0x0fffffffffffffffUL; | ||
107 | u64 real_end = real_addr + len; | ||
108 | u64 map_start = real_addr & ~0xfff; | ||
109 | u64 map_end = (real_end + 0xfff) & ~0xfff; | ||
110 | u64 bus_addr = 0; | ||
111 | |||
112 | u64 flags = 0xf800000000000000UL; | ||
113 | |||
114 | result = lv1_allocate_device_dma_region(bus_id, dev_id, | ||
115 | map_end - map_start, 12, 0, | ||
116 | &bus_addr); | ||
117 | if (result) | ||
118 | lv1_panic(0); | ||
119 | |||
120 | result = lv1_map_device_dma_region(bus_id, dev_id, map_start, | ||
121 | bus_addr, map_end - map_start, | ||
122 | flags); | ||
123 | if (result) | ||
124 | lv1_panic(0); | ||
125 | |||
126 | *real_bus_addr = bus_addr + real_addr - map_start; | ||
127 | } | ||
128 | |||
129 | static int unmap_dma_mem(int bus_id, int dev_id, u64 bus_addr, size_t len) | ||
130 | { | ||
131 | s64 result; | ||
132 | u64 real_bus_addr; | ||
133 | |||
134 | real_bus_addr = bus_addr & ~0xfff; | ||
135 | len += bus_addr - real_bus_addr; | ||
136 | len = (len + 0xfff) & ~0xfff; | ||
137 | |||
138 | result = lv1_unmap_device_dma_region(bus_id, dev_id, real_bus_addr, | ||
139 | len); | ||
140 | if (result) | ||
141 | return result; | ||
142 | |||
143 | return lv1_free_device_dma_region(bus_id, dev_id, real_bus_addr); | ||
144 | } | ||
145 | |||
146 | static void gelic_debug_init(void) | ||
147 | { | ||
148 | s64 result; | ||
149 | u64 v2; | ||
150 | u64 mac; | ||
151 | u64 vlan_id; | ||
152 | |||
153 | result = lv1_open_device(GELIC_BUS_ID, GELIC_DEVICE_ID, 0); | ||
154 | if (result) | ||
155 | lv1_panic(0); | ||
156 | |||
157 | map_dma_mem(GELIC_BUS_ID, GELIC_DEVICE_ID, &dbg, sizeof(dbg), | ||
158 | &bus_addr); | ||
159 | |||
160 | memset(&dbg, 0, sizeof(dbg)); | ||
161 | |||
162 | dbg.descr.buf_addr = bus_addr + offsetof(struct debug_block, pkt); | ||
163 | |||
164 | wmb(); | ||
165 | |||
166 | result = lv1_net_control(GELIC_BUS_ID, GELIC_DEVICE_ID, | ||
167 | GELIC_LV1_GET_MAC_ADDRESS, 0, 0, 0, | ||
168 | &mac, &v2); | ||
169 | if (result) | ||
170 | lv1_panic(0); | ||
171 | |||
172 | mac <<= 16; | ||
173 | |||
174 | h_eth = (struct ethhdr *)dbg.pkt; | ||
175 | |||
176 | memset(&h_eth->dest, 0xff, 6); | ||
177 | memcpy(&h_eth->src, &mac, 6); | ||
178 | |||
179 | header_size = sizeof(struct ethhdr); | ||
180 | |||
181 | result = lv1_net_control(GELIC_BUS_ID, GELIC_DEVICE_ID, | ||
182 | GELIC_LV1_GET_VLAN_ID, | ||
183 | GELIC_LV1_VLAN_TX_ETHERNET_0, 0, 0, | ||
184 | &vlan_id, &v2); | ||
185 | if (!result) { | ||
186 | h_eth->type = 0x8100; | ||
187 | |||
188 | header_size += sizeof(struct vlantag); | ||
189 | h_vlan = (struct vlantag *)(h_eth + 1); | ||
190 | h_vlan->vlan = vlan_id; | ||
191 | h_vlan->subtype = 0x0800; | ||
192 | h_ip = (struct iphdr *)(h_vlan + 1); | ||
193 | } else { | ||
194 | h_eth->type = 0x0800; | ||
195 | h_ip = (struct iphdr *)(h_eth + 1); | ||
196 | } | ||
197 | |||
198 | header_size += sizeof(struct iphdr); | ||
199 | h_ip->ver_len = 0x45; | ||
200 | h_ip->ttl = 10; | ||
201 | h_ip->proto = 0x11; | ||
202 | h_ip->src = 0x00000000; | ||
203 | h_ip->dest = 0xffffffff; | ||
204 | |||
205 | header_size += sizeof(struct udphdr); | ||
206 | h_udp = (struct udphdr *)(h_ip + 1); | ||
207 | h_udp->src = GELIC_DEBUG_PORT; | ||
208 | h_udp->dest = GELIC_DEBUG_PORT; | ||
209 | |||
210 | pmsgc = pmsg = (char *)(h_udp + 1); | ||
211 | } | ||
212 | |||
213 | static void gelic_debug_shutdown(void) | ||
214 | { | ||
215 | if (bus_addr) | ||
216 | unmap_dma_mem(GELIC_BUS_ID, GELIC_DEVICE_ID, | ||
217 | bus_addr, sizeof(dbg)); | ||
218 | lv1_close_device(GELIC_BUS_ID, GELIC_DEVICE_ID); | ||
219 | } | ||
220 | |||
221 | static void gelic_sendbuf(int msgsize) | ||
222 | { | ||
223 | u16 *p; | ||
224 | u32 sum; | ||
225 | int i; | ||
226 | |||
227 | dbg.descr.buf_size = header_size + msgsize; | ||
228 | h_ip->total_length = msgsize + sizeof(struct udphdr) + | ||
229 | sizeof(struct iphdr); | ||
230 | h_udp->len = msgsize + sizeof(struct udphdr); | ||
231 | |||
232 | h_ip->checksum = 0; | ||
233 | sum = 0; | ||
234 | p = (u16 *)h_ip; | ||
235 | for (i = 0; i < 5; i++) | ||
236 | sum += *p++; | ||
237 | h_ip->checksum = ~(sum + (sum >> 16)); | ||
238 | |||
239 | dbg.descr.dmac_cmd_status = GELIC_DESCR_DMA_CMD_NO_CHKSUM | | ||
240 | GELIC_DESCR_TX_DMA_FRAME_TAIL; | ||
241 | dbg.descr.result_size = 0; | ||
242 | dbg.descr.data_status = 0; | ||
243 | |||
244 | wmb(); | ||
245 | |||
246 | lv1_net_start_tx_dma(GELIC_BUS_ID, GELIC_DEVICE_ID, bus_addr, 0); | ||
247 | |||
248 | while ((dbg.descr.dmac_cmd_status & GELIC_DESCR_DMA_STAT_MASK) == | ||
249 | GELIC_DESCR_DMA_CARDOWNED) | ||
250 | cpu_relax(); | ||
251 | } | ||
252 | |||
253 | static void ps3gelic_udbg_putc(char ch) | ||
254 | { | ||
255 | *pmsgc++ = ch; | ||
256 | if (ch == '\n' || (pmsgc-pmsg) >= GELIC_MAX_MESSAGE_SIZE) { | ||
257 | gelic_sendbuf(pmsgc-pmsg); | ||
258 | pmsgc = pmsg; | ||
259 | } | ||
260 | } | ||
261 | |||
262 | void __init udbg_init_ps3gelic(void) | ||
263 | { | ||
264 | gelic_debug_init(); | ||
265 | udbg_putc = ps3gelic_udbg_putc; | ||
266 | } | ||
267 | |||
268 | void udbg_shutdown_ps3gelic(void) | ||
269 | { | ||
270 | udbg_putc = NULL; | ||
271 | gelic_debug_shutdown(); | ||
272 | } | ||
273 | EXPORT_SYMBOL(udbg_shutdown_ps3gelic); | ||
diff --git a/arch/powerpc/platforms/ps3/interrupt.c b/arch/powerpc/platforms/ps3/interrupt.c index 600ed2c0ed59..404bc52b7806 100644 --- a/arch/powerpc/platforms/ps3/interrupt.c +++ b/arch/powerpc/platforms/ps3/interrupt.c | |||
@@ -19,7 +19,7 @@ | |||
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/kernel.h> | 21 | #include <linux/kernel.h> |
22 | #include <linux/module.h> | 22 | #include <linux/export.h> |
23 | #include <linux/irq.h> | 23 | #include <linux/irq.h> |
24 | 24 | ||
25 | #include <asm/machdep.h> | 25 | #include <asm/machdep.h> |
diff --git a/arch/powerpc/platforms/ps3/mm.c b/arch/powerpc/platforms/ps3/mm.c index c2045880e674..72714ad27842 100644 --- a/arch/powerpc/platforms/ps3/mm.c +++ b/arch/powerpc/platforms/ps3/mm.c | |||
@@ -19,7 +19,7 @@ | |||
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/kernel.h> | 21 | #include <linux/kernel.h> |
22 | #include <linux/module.h> | 22 | #include <linux/export.h> |
23 | #include <linux/memory_hotplug.h> | 23 | #include <linux/memory_hotplug.h> |
24 | #include <linux/memblock.h> | 24 | #include <linux/memblock.h> |
25 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
diff --git a/arch/powerpc/platforms/ps3/os-area.c b/arch/powerpc/platforms/ps3/os-area.c index 5b759b669598..56d26bc4fd41 100644 --- a/arch/powerpc/platforms/ps3/os-area.c +++ b/arch/powerpc/platforms/ps3/os-area.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/workqueue.h> | 23 | #include <linux/workqueue.h> |
24 | #include <linux/fs.h> | 24 | #include <linux/fs.h> |
25 | #include <linux/syscalls.h> | 25 | #include <linux/syscalls.h> |
26 | #include <linux/export.h> | ||
26 | #include <linux/ctype.h> | 27 | #include <linux/ctype.h> |
27 | #include <linux/memblock.h> | 28 | #include <linux/memblock.h> |
28 | #include <linux/of.h> | 29 | #include <linux/of.h> |
diff --git a/arch/powerpc/platforms/ps3/repository.c b/arch/powerpc/platforms/ps3/repository.c index 5e304c292f68..ca40f6afd35d 100644 --- a/arch/powerpc/platforms/ps3/repository.c +++ b/arch/powerpc/platforms/ps3/repository.c | |||
@@ -184,7 +184,7 @@ int ps3_repository_read_bus_type(unsigned int bus_index, | |||
184 | enum ps3_bus_type *bus_type) | 184 | enum ps3_bus_type *bus_type) |
185 | { | 185 | { |
186 | int result; | 186 | int result; |
187 | u64 v1; | 187 | u64 v1 = 0; |
188 | 188 | ||
189 | result = read_node(PS3_LPAR_ID_PME, | 189 | result = read_node(PS3_LPAR_ID_PME, |
190 | make_first_field("bus", bus_index), | 190 | make_first_field("bus", bus_index), |
@@ -199,7 +199,7 @@ int ps3_repository_read_bus_num_dev(unsigned int bus_index, | |||
199 | unsigned int *num_dev) | 199 | unsigned int *num_dev) |
200 | { | 200 | { |
201 | int result; | 201 | int result; |
202 | u64 v1; | 202 | u64 v1 = 0; |
203 | 203 | ||
204 | result = read_node(PS3_LPAR_ID_PME, | 204 | result = read_node(PS3_LPAR_ID_PME, |
205 | make_first_field("bus", bus_index), | 205 | make_first_field("bus", bus_index), |
@@ -239,7 +239,7 @@ int ps3_repository_read_dev_type(unsigned int bus_index, | |||
239 | unsigned int dev_index, enum ps3_dev_type *dev_type) | 239 | unsigned int dev_index, enum ps3_dev_type *dev_type) |
240 | { | 240 | { |
241 | int result; | 241 | int result; |
242 | u64 v1; | 242 | u64 v1 = 0; |
243 | 243 | ||
244 | result = read_node(PS3_LPAR_ID_PME, | 244 | result = read_node(PS3_LPAR_ID_PME, |
245 | make_first_field("bus", bus_index), | 245 | make_first_field("bus", bus_index), |
@@ -256,8 +256,8 @@ int ps3_repository_read_dev_intr(unsigned int bus_index, | |||
256 | enum ps3_interrupt_type *intr_type, unsigned int *interrupt_id) | 256 | enum ps3_interrupt_type *intr_type, unsigned int *interrupt_id) |
257 | { | 257 | { |
258 | int result; | 258 | int result; |
259 | u64 v1; | 259 | u64 v1 = 0; |
260 | u64 v2; | 260 | u64 v2 = 0; |
261 | 261 | ||
262 | result = read_node(PS3_LPAR_ID_PME, | 262 | result = read_node(PS3_LPAR_ID_PME, |
263 | make_first_field("bus", bus_index), | 263 | make_first_field("bus", bus_index), |
@@ -275,7 +275,7 @@ int ps3_repository_read_dev_reg_type(unsigned int bus_index, | |||
275 | enum ps3_reg_type *reg_type) | 275 | enum ps3_reg_type *reg_type) |
276 | { | 276 | { |
277 | int result; | 277 | int result; |
278 | u64 v1; | 278 | u64 v1 = 0; |
279 | 279 | ||
280 | result = read_node(PS3_LPAR_ID_PME, | 280 | result = read_node(PS3_LPAR_ID_PME, |
281 | make_first_field("bus", bus_index), | 281 | make_first_field("bus", bus_index), |
@@ -615,7 +615,7 @@ int ps3_repository_read_stor_dev_num_regions(unsigned int bus_index, | |||
615 | unsigned int dev_index, unsigned int *num_regions) | 615 | unsigned int dev_index, unsigned int *num_regions) |
616 | { | 616 | { |
617 | int result; | 617 | int result; |
618 | u64 v1; | 618 | u64 v1 = 0; |
619 | 619 | ||
620 | result = read_node(PS3_LPAR_ID_PME, | 620 | result = read_node(PS3_LPAR_ID_PME, |
621 | make_first_field("bus", bus_index), | 621 | make_first_field("bus", bus_index), |
@@ -631,7 +631,7 @@ int ps3_repository_read_stor_dev_region_id(unsigned int bus_index, | |||
631 | unsigned int *region_id) | 631 | unsigned int *region_id) |
632 | { | 632 | { |
633 | int result; | 633 | int result; |
634 | u64 v1; | 634 | u64 v1 = 0; |
635 | 635 | ||
636 | result = read_node(PS3_LPAR_ID_PME, | 636 | result = read_node(PS3_LPAR_ID_PME, |
637 | make_first_field("bus", bus_index), | 637 | make_first_field("bus", bus_index), |
@@ -786,7 +786,7 @@ int ps3_repository_read_mm_info(u64 *rm_base, u64 *rm_size, u64 *region_total) | |||
786 | int ps3_repository_read_num_spu_reserved(unsigned int *num_spu_reserved) | 786 | int ps3_repository_read_num_spu_reserved(unsigned int *num_spu_reserved) |
787 | { | 787 | { |
788 | int result; | 788 | int result; |
789 | u64 v1; | 789 | u64 v1 = 0; |
790 | 790 | ||
791 | result = read_node(PS3_LPAR_ID_CURRENT, | 791 | result = read_node(PS3_LPAR_ID_CURRENT, |
792 | make_first_field("bi", 0), | 792 | make_first_field("bi", 0), |
@@ -805,7 +805,7 @@ int ps3_repository_read_num_spu_reserved(unsigned int *num_spu_reserved) | |||
805 | int ps3_repository_read_num_spu_resource_id(unsigned int *num_resource_id) | 805 | int ps3_repository_read_num_spu_resource_id(unsigned int *num_resource_id) |
806 | { | 806 | { |
807 | int result; | 807 | int result; |
808 | u64 v1; | 808 | u64 v1 = 0; |
809 | 809 | ||
810 | result = read_node(PS3_LPAR_ID_CURRENT, | 810 | result = read_node(PS3_LPAR_ID_CURRENT, |
811 | make_first_field("bi", 0), | 811 | make_first_field("bi", 0), |
@@ -827,8 +827,8 @@ int ps3_repository_read_spu_resource_id(unsigned int res_index, | |||
827 | enum ps3_spu_resource_type *resource_type, unsigned int *resource_id) | 827 | enum ps3_spu_resource_type *resource_type, unsigned int *resource_id) |
828 | { | 828 | { |
829 | int result; | 829 | int result; |
830 | u64 v1; | 830 | u64 v1 = 0; |
831 | u64 v2; | 831 | u64 v2 = 0; |
832 | 832 | ||
833 | result = read_node(PS3_LPAR_ID_CURRENT, | 833 | result = read_node(PS3_LPAR_ID_CURRENT, |
834 | make_first_field("bi", 0), | 834 | make_first_field("bi", 0), |
@@ -854,7 +854,7 @@ static int ps3_repository_read_boot_dat_address(u64 *address) | |||
854 | int ps3_repository_read_boot_dat_size(unsigned int *size) | 854 | int ps3_repository_read_boot_dat_size(unsigned int *size) |
855 | { | 855 | { |
856 | int result; | 856 | int result; |
857 | u64 v1; | 857 | u64 v1 = 0; |
858 | 858 | ||
859 | result = read_node(PS3_LPAR_ID_CURRENT, | 859 | result = read_node(PS3_LPAR_ID_CURRENT, |
860 | make_first_field("bi", 0), | 860 | make_first_field("bi", 0), |
@@ -869,7 +869,7 @@ int ps3_repository_read_boot_dat_size(unsigned int *size) | |||
869 | int ps3_repository_read_vuart_av_port(unsigned int *port) | 869 | int ps3_repository_read_vuart_av_port(unsigned int *port) |
870 | { | 870 | { |
871 | int result; | 871 | int result; |
872 | u64 v1; | 872 | u64 v1 = 0; |
873 | 873 | ||
874 | result = read_node(PS3_LPAR_ID_CURRENT, | 874 | result = read_node(PS3_LPAR_ID_CURRENT, |
875 | make_first_field("bi", 0), | 875 | make_first_field("bi", 0), |
@@ -884,7 +884,7 @@ int ps3_repository_read_vuart_av_port(unsigned int *port) | |||
884 | int ps3_repository_read_vuart_sysmgr_port(unsigned int *port) | 884 | int ps3_repository_read_vuart_sysmgr_port(unsigned int *port) |
885 | { | 885 | { |
886 | int result; | 886 | int result; |
887 | u64 v1; | 887 | u64 v1 = 0; |
888 | 888 | ||
889 | result = read_node(PS3_LPAR_ID_CURRENT, | 889 | result = read_node(PS3_LPAR_ID_CURRENT, |
890 | make_first_field("bi", 0), | 890 | make_first_field("bi", 0), |
@@ -919,7 +919,7 @@ int ps3_repository_read_boot_dat_info(u64 *lpar_addr, unsigned int *size) | |||
919 | int ps3_repository_read_num_be(unsigned int *num_be) | 919 | int ps3_repository_read_num_be(unsigned int *num_be) |
920 | { | 920 | { |
921 | int result; | 921 | int result; |
922 | u64 v1; | 922 | u64 v1 = 0; |
923 | 923 | ||
924 | result = read_node(PS3_LPAR_ID_PME, | 924 | result = read_node(PS3_LPAR_ID_PME, |
925 | make_first_field("ben", 0), | 925 | make_first_field("ben", 0), |
diff --git a/arch/powerpc/platforms/ps3/setup.c b/arch/powerpc/platforms/ps3/setup.c index 149bea2ce583..e8ec1b2bfffd 100644 --- a/arch/powerpc/platforms/ps3/setup.c +++ b/arch/powerpc/platforms/ps3/setup.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/fs.h> | 23 | #include <linux/fs.h> |
24 | #include <linux/root_dev.h> | 24 | #include <linux/root_dev.h> |
25 | #include <linux/console.h> | 25 | #include <linux/console.h> |
26 | #include <linux/export.h> | ||
26 | #include <linux/bootmem.h> | 27 | #include <linux/bootmem.h> |
27 | 28 | ||
28 | #include <asm/machdep.h> | 29 | #include <asm/machdep.h> |
diff --git a/arch/powerpc/platforms/ps3/spu.c b/arch/powerpc/platforms/ps3/spu.c index 375a9f92158d..451fad1c92a8 100644 --- a/arch/powerpc/platforms/ps3/spu.c +++ b/arch/powerpc/platforms/ps3/spu.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/init.h> | 22 | #include <linux/init.h> |
23 | #include <linux/slab.h> | 23 | #include <linux/slab.h> |
24 | #include <linux/mmzone.h> | 24 | #include <linux/mmzone.h> |
25 | #include <linux/export.h> | ||
25 | #include <linux/io.h> | 26 | #include <linux/io.h> |
26 | #include <linux/mm.h> | 27 | #include <linux/mm.h> |
27 | 28 | ||
diff --git a/arch/powerpc/platforms/ps3/system-bus.c b/arch/powerpc/platforms/ps3/system-bus.c index 23083c397528..880eb9ce22c5 100644 --- a/arch/powerpc/platforms/ps3/system-bus.c +++ b/arch/powerpc/platforms/ps3/system-bus.c | |||
@@ -20,7 +20,7 @@ | |||
20 | 20 | ||
21 | #include <linux/kernel.h> | 21 | #include <linux/kernel.h> |
22 | #include <linux/init.h> | 22 | #include <linux/init.h> |
23 | #include <linux/module.h> | 23 | #include <linux/export.h> |
24 | #include <linux/dma-mapping.h> | 24 | #include <linux/dma-mapping.h> |
25 | #include <linux/err.h> | 25 | #include <linux/err.h> |
26 | #include <linux/slab.h> | 26 | #include <linux/slab.h> |
@@ -695,12 +695,18 @@ static int ps3_dma_supported(struct device *_dev, u64 mask) | |||
695 | return mask >= DMA_BIT_MASK(32); | 695 | return mask >= DMA_BIT_MASK(32); |
696 | } | 696 | } |
697 | 697 | ||
698 | static u64 ps3_dma_get_required_mask(struct device *_dev) | ||
699 | { | ||
700 | return DMA_BIT_MASK(32); | ||
701 | } | ||
702 | |||
698 | static struct dma_map_ops ps3_sb_dma_ops = { | 703 | static struct dma_map_ops ps3_sb_dma_ops = { |
699 | .alloc_coherent = ps3_alloc_coherent, | 704 | .alloc_coherent = ps3_alloc_coherent, |
700 | .free_coherent = ps3_free_coherent, | 705 | .free_coherent = ps3_free_coherent, |
701 | .map_sg = ps3_sb_map_sg, | 706 | .map_sg = ps3_sb_map_sg, |
702 | .unmap_sg = ps3_sb_unmap_sg, | 707 | .unmap_sg = ps3_sb_unmap_sg, |
703 | .dma_supported = ps3_dma_supported, | 708 | .dma_supported = ps3_dma_supported, |
709 | .get_required_mask = ps3_dma_get_required_mask, | ||
704 | .map_page = ps3_sb_map_page, | 710 | .map_page = ps3_sb_map_page, |
705 | .unmap_page = ps3_unmap_page, | 711 | .unmap_page = ps3_unmap_page, |
706 | }; | 712 | }; |
@@ -711,6 +717,7 @@ static struct dma_map_ops ps3_ioc0_dma_ops = { | |||
711 | .map_sg = ps3_ioc0_map_sg, | 717 | .map_sg = ps3_ioc0_map_sg, |
712 | .unmap_sg = ps3_ioc0_unmap_sg, | 718 | .unmap_sg = ps3_ioc0_unmap_sg, |
713 | .dma_supported = ps3_dma_supported, | 719 | .dma_supported = ps3_dma_supported, |
720 | .get_required_mask = ps3_dma_get_required_mask, | ||
714 | .map_page = ps3_ioc0_map_page, | 721 | .map_page = ps3_ioc0_map_page, |
715 | .unmap_page = ps3_unmap_page, | 722 | .unmap_page = ps3_unmap_page, |
716 | }; | 723 | }; |
diff --git a/arch/powerpc/platforms/pseries/Kconfig b/arch/powerpc/platforms/pseries/Kconfig index 05cf4769b88c..c81f6bb9c10f 100644 --- a/arch/powerpc/platforms/pseries/Kconfig +++ b/arch/powerpc/platforms/pseries/Kconfig | |||
@@ -15,6 +15,7 @@ config PPC_PSERIES | |||
15 | select PPC_UDBG_16550 | 15 | select PPC_UDBG_16550 |
16 | select PPC_NATIVE | 16 | select PPC_NATIVE |
17 | select PPC_PCI_CHOICE if EXPERT | 17 | select PPC_PCI_CHOICE if EXPERT |
18 | select ZLIB_DEFLATE | ||
18 | default y | 19 | default y |
19 | 20 | ||
20 | config PPC_SPLPAR | 21 | config PPC_SPLPAR |
diff --git a/arch/powerpc/platforms/pseries/dlpar.c b/arch/powerpc/platforms/pseries/dlpar.c index e9be25bc571b..0f1b706506ed 100644 --- a/arch/powerpc/platforms/pseries/dlpar.c +++ b/arch/powerpc/platforms/pseries/dlpar.c | |||
@@ -112,6 +112,7 @@ void dlpar_free_cc_nodes(struct device_node *dn) | |||
112 | dlpar_free_one_cc_node(dn); | 112 | dlpar_free_one_cc_node(dn); |
113 | } | 113 | } |
114 | 114 | ||
115 | #define COMPLETE 0 | ||
115 | #define NEXT_SIBLING 1 | 116 | #define NEXT_SIBLING 1 |
116 | #define NEXT_CHILD 2 | 117 | #define NEXT_CHILD 2 |
117 | #define NEXT_PROPERTY 3 | 118 | #define NEXT_PROPERTY 3 |
@@ -158,6 +159,9 @@ struct device_node *dlpar_configure_connector(u32 drc_index) | |||
158 | spin_unlock(&rtas_data_buf_lock); | 159 | spin_unlock(&rtas_data_buf_lock); |
159 | 160 | ||
160 | switch (rc) { | 161 | switch (rc) { |
162 | case COMPLETE: | ||
163 | break; | ||
164 | |||
161 | case NEXT_SIBLING: | 165 | case NEXT_SIBLING: |
162 | dn = dlpar_parse_cc_node(ccwa); | 166 | dn = dlpar_parse_cc_node(ccwa); |
163 | if (!dn) | 167 | if (!dn) |
diff --git a/arch/powerpc/platforms/pseries/eeh.c b/arch/powerpc/platforms/pseries/eeh.c index ada6e07532ec..565869022e3d 100644 --- a/arch/powerpc/platforms/pseries/eeh.c +++ b/arch/powerpc/platforms/pseries/eeh.c | |||
@@ -22,6 +22,7 @@ | |||
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <linux/delay.h> | 24 | #include <linux/delay.h> |
25 | #include <linux/sched.h> /* for init_mm */ | ||
25 | #include <linux/init.h> | 26 | #include <linux/init.h> |
26 | #include <linux/list.h> | 27 | #include <linux/list.h> |
27 | #include <linux/pci.h> | 28 | #include <linux/pci.h> |
@@ -29,6 +30,7 @@ | |||
29 | #include <linux/rbtree.h> | 30 | #include <linux/rbtree.h> |
30 | #include <linux/seq_file.h> | 31 | #include <linux/seq_file.h> |
31 | #include <linux/spinlock.h> | 32 | #include <linux/spinlock.h> |
33 | #include <linux/export.h> | ||
32 | #include <linux/of.h> | 34 | #include <linux/of.h> |
33 | 35 | ||
34 | #include <linux/atomic.h> | 36 | #include <linux/atomic.h> |
@@ -1338,7 +1340,7 @@ static const struct file_operations proc_eeh_operations = { | |||
1338 | static int __init eeh_init_proc(void) | 1340 | static int __init eeh_init_proc(void) |
1339 | { | 1341 | { |
1340 | if (machine_is(pseries)) | 1342 | if (machine_is(pseries)) |
1341 | proc_create("ppc64/eeh", 0, NULL, &proc_eeh_operations); | 1343 | proc_create("powerpc/eeh", 0, NULL, &proc_eeh_operations); |
1342 | return 0; | 1344 | return 0; |
1343 | } | 1345 | } |
1344 | __initcall(eeh_init_proc); | 1346 | __initcall(eeh_init_proc); |
diff --git a/arch/powerpc/platforms/pseries/eeh_event.c b/arch/powerpc/platforms/pseries/eeh_event.c index 2ec500c130b5..d2383cfb6dfd 100644 --- a/arch/powerpc/platforms/pseries/eeh_event.c +++ b/arch/powerpc/platforms/pseries/eeh_event.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/delay.h> | 21 | #include <linux/delay.h> |
22 | #include <linux/list.h> | 22 | #include <linux/list.h> |
23 | #include <linux/mutex.h> | 23 | #include <linux/mutex.h> |
24 | #include <linux/sched.h> | ||
24 | #include <linux/pci.h> | 25 | #include <linux/pci.h> |
25 | #include <linux/slab.h> | 26 | #include <linux/slab.h> |
26 | #include <linux/workqueue.h> | 27 | #include <linux/workqueue.h> |
diff --git a/arch/powerpc/platforms/pseries/eeh_sysfs.c b/arch/powerpc/platforms/pseries/eeh_sysfs.c index 23982c7892d2..eb744ee234da 100644 --- a/arch/powerpc/platforms/pseries/eeh_sysfs.c +++ b/arch/powerpc/platforms/pseries/eeh_sysfs.c | |||
@@ -23,6 +23,7 @@ | |||
23 | * Send comments and feedback to Linas Vepstas <linas@austin.ibm.com> | 23 | * Send comments and feedback to Linas Vepstas <linas@austin.ibm.com> |
24 | */ | 24 | */ |
25 | #include <linux/pci.h> | 25 | #include <linux/pci.h> |
26 | #include <linux/stat.h> | ||
26 | #include <asm/ppc-pci.h> | 27 | #include <asm/ppc-pci.h> |
27 | #include <asm/pci-bridge.h> | 28 | #include <asm/pci-bridge.h> |
28 | 29 | ||
diff --git a/arch/powerpc/platforms/pseries/hotplug-cpu.c b/arch/powerpc/platforms/pseries/hotplug-cpu.c index 83a3ca2fd282..c986d08d0807 100644 --- a/arch/powerpc/platforms/pseries/hotplug-cpu.c +++ b/arch/powerpc/platforms/pseries/hotplug-cpu.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/kernel.h> | 21 | #include <linux/kernel.h> |
22 | #include <linux/interrupt.h> | 22 | #include <linux/interrupt.h> |
23 | #include <linux/delay.h> | 23 | #include <linux/delay.h> |
24 | #include <linux/sched.h> /* for idle_task_exit */ | ||
24 | #include <linux/cpu.h> | 25 | #include <linux/cpu.h> |
25 | #include <asm/system.h> | 26 | #include <asm/system.h> |
26 | #include <asm/prom.h> | 27 | #include <asm/prom.h> |
diff --git a/arch/powerpc/platforms/pseries/hvconsole.c b/arch/powerpc/platforms/pseries/hvconsole.c index 041e87ca1893..b344f94b0400 100644 --- a/arch/powerpc/platforms/pseries/hvconsole.c +++ b/arch/powerpc/platforms/pseries/hvconsole.c | |||
@@ -24,7 +24,8 @@ | |||
24 | */ | 24 | */ |
25 | 25 | ||
26 | #include <linux/kernel.h> | 26 | #include <linux/kernel.h> |
27 | #include <linux/module.h> | 27 | #include <linux/export.h> |
28 | #include <linux/errno.h> | ||
28 | #include <asm/hvcall.h> | 29 | #include <asm/hvcall.h> |
29 | #include <asm/hvconsole.h> | 30 | #include <asm/hvconsole.h> |
30 | #include "plpar_wrappers.h" | 31 | #include "plpar_wrappers.h" |
diff --git a/arch/powerpc/platforms/pseries/io_event_irq.c b/arch/powerpc/platforms/pseries/io_event_irq.c index 2c4dd1fb8333..1a709bc48ce1 100644 --- a/arch/powerpc/platforms/pseries/io_event_irq.c +++ b/arch/powerpc/platforms/pseries/io_event_irq.c | |||
@@ -9,7 +9,7 @@ | |||
9 | 9 | ||
10 | #include <linux/errno.h> | 10 | #include <linux/errno.h> |
11 | #include <linux/slab.h> | 11 | #include <linux/slab.h> |
12 | #include <linux/module.h> | 12 | #include <linux/export.h> |
13 | #include <linux/irq.h> | 13 | #include <linux/irq.h> |
14 | #include <linux/interrupt.h> | 14 | #include <linux/interrupt.h> |
15 | #include <linux/of.h> | 15 | #include <linux/of.h> |
diff --git a/arch/powerpc/platforms/pseries/iommu.c b/arch/powerpc/platforms/pseries/iommu.c index 01faab9456ca..b719d9709730 100644 --- a/arch/powerpc/platforms/pseries/iommu.c +++ b/arch/powerpc/platforms/pseries/iommu.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/slab.h> | 29 | #include <linux/slab.h> |
30 | #include <linux/mm.h> | 30 | #include <linux/mm.h> |
31 | #include <linux/spinlock.h> | 31 | #include <linux/spinlock.h> |
32 | #include <linux/sched.h> /* for show_stack */ | ||
32 | #include <linux/string.h> | 33 | #include <linux/string.h> |
33 | #include <linux/pci.h> | 34 | #include <linux/pci.h> |
34 | #include <linux/dma-mapping.h> | 35 | #include <linux/dma-mapping.h> |
@@ -939,14 +940,14 @@ static u64 enable_ddw(struct pci_dev *dev, struct device_node *pdn) | |||
939 | if (ret) { | 940 | if (ret) { |
940 | dev_info(&dev->dev, "failed to map direct window for %s: %d\n", | 941 | dev_info(&dev->dev, "failed to map direct window for %s: %d\n", |
941 | dn->full_name, ret); | 942 | dn->full_name, ret); |
942 | goto out_clear_window; | 943 | goto out_free_window; |
943 | } | 944 | } |
944 | 945 | ||
945 | ret = prom_add_property(pdn, win64); | 946 | ret = prom_add_property(pdn, win64); |
946 | if (ret) { | 947 | if (ret) { |
947 | dev_err(&dev->dev, "unable to add dma window property for %s: %d", | 948 | dev_err(&dev->dev, "unable to add dma window property for %s: %d", |
948 | pdn->full_name, ret); | 949 | pdn->full_name, ret); |
949 | goto out_clear_window; | 950 | goto out_free_window; |
950 | } | 951 | } |
951 | 952 | ||
952 | window->device = pdn; | 953 | window->device = pdn; |
@@ -958,6 +959,9 @@ static u64 enable_ddw(struct pci_dev *dev, struct device_node *pdn) | |||
958 | dma_addr = of_read_number(&create.addr_hi, 2); | 959 | dma_addr = of_read_number(&create.addr_hi, 2); |
959 | goto out_unlock; | 960 | goto out_unlock; |
960 | 961 | ||
962 | out_free_window: | ||
963 | kfree(window); | ||
964 | |||
961 | out_clear_window: | 965 | out_clear_window: |
962 | remove_ddw(pdn); | 966 | remove_ddw(pdn); |
963 | 967 | ||
@@ -1077,12 +1081,38 @@ check_mask: | |||
1077 | return 0; | 1081 | return 0; |
1078 | } | 1082 | } |
1079 | 1083 | ||
1084 | static u64 dma_get_required_mask_pSeriesLP(struct device *dev) | ||
1085 | { | ||
1086 | if (!dev->dma_mask) | ||
1087 | return 0; | ||
1088 | |||
1089 | if (!disable_ddw && dev_is_pci(dev)) { | ||
1090 | struct pci_dev *pdev = to_pci_dev(dev); | ||
1091 | struct device_node *dn; | ||
1092 | |||
1093 | dn = pci_device_to_OF_node(pdev); | ||
1094 | |||
1095 | /* search upwards for ibm,dma-window */ | ||
1096 | for (; dn && PCI_DN(dn) && !PCI_DN(dn)->iommu_table; | ||
1097 | dn = dn->parent) | ||
1098 | if (of_get_property(dn, "ibm,dma-window", NULL)) | ||
1099 | break; | ||
1100 | /* if there is a ibm,ddw-applicable property require 64 bits */ | ||
1101 | if (dn && PCI_DN(dn) && | ||
1102 | of_get_property(dn, "ibm,ddw-applicable", NULL)) | ||
1103 | return DMA_BIT_MASK(64); | ||
1104 | } | ||
1105 | |||
1106 | return dma_iommu_ops.get_required_mask(dev); | ||
1107 | } | ||
1108 | |||
1080 | #else /* CONFIG_PCI */ | 1109 | #else /* CONFIG_PCI */ |
1081 | #define pci_dma_bus_setup_pSeries NULL | 1110 | #define pci_dma_bus_setup_pSeries NULL |
1082 | #define pci_dma_dev_setup_pSeries NULL | 1111 | #define pci_dma_dev_setup_pSeries NULL |
1083 | #define pci_dma_bus_setup_pSeriesLP NULL | 1112 | #define pci_dma_bus_setup_pSeriesLP NULL |
1084 | #define pci_dma_dev_setup_pSeriesLP NULL | 1113 | #define pci_dma_dev_setup_pSeriesLP NULL |
1085 | #define dma_set_mask_pSeriesLP NULL | 1114 | #define dma_set_mask_pSeriesLP NULL |
1115 | #define dma_get_required_mask_pSeriesLP NULL | ||
1086 | #endif /* !CONFIG_PCI */ | 1116 | #endif /* !CONFIG_PCI */ |
1087 | 1117 | ||
1088 | static int iommu_mem_notifier(struct notifier_block *nb, unsigned long action, | 1118 | static int iommu_mem_notifier(struct notifier_block *nb, unsigned long action, |
@@ -1186,6 +1216,7 @@ void iommu_init_early_pSeries(void) | |||
1186 | ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeriesLP; | 1216 | ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeriesLP; |
1187 | ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeriesLP; | 1217 | ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeriesLP; |
1188 | ppc_md.dma_set_mask = dma_set_mask_pSeriesLP; | 1218 | ppc_md.dma_set_mask = dma_set_mask_pSeriesLP; |
1219 | ppc_md.dma_get_required_mask = dma_get_required_mask_pSeriesLP; | ||
1189 | } else { | 1220 | } else { |
1190 | ppc_md.tce_build = tce_build_pSeries; | 1221 | ppc_md.tce_build = tce_build_pSeries; |
1191 | ppc_md.tce_free = tce_free_pSeries; | 1222 | ppc_md.tce_free = tce_free_pSeries; |
diff --git a/arch/powerpc/platforms/pseries/lpar.c b/arch/powerpc/platforms/pseries/lpar.c index c9a29dae8c05..27a49508b410 100644 --- a/arch/powerpc/platforms/pseries/lpar.c +++ b/arch/powerpc/platforms/pseries/lpar.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/kernel.h> | 25 | #include <linux/kernel.h> |
26 | #include <linux/dma-mapping.h> | 26 | #include <linux/dma-mapping.h> |
27 | #include <linux/console.h> | 27 | #include <linux/console.h> |
28 | #include <linux/export.h> | ||
28 | #include <asm/processor.h> | 29 | #include <asm/processor.h> |
29 | #include <asm/mmu.h> | 30 | #include <asm/mmu.h> |
30 | #include <asm/page.h> | 31 | #include <asm/page.h> |
diff --git a/arch/powerpc/platforms/pseries/mobility.c b/arch/powerpc/platforms/pseries/mobility.c index 3e7f651e50ac..029a562af373 100644 --- a/arch/powerpc/platforms/pseries/mobility.c +++ b/arch/powerpc/platforms/pseries/mobility.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
13 | #include <linux/kobject.h> | 13 | #include <linux/kobject.h> |
14 | #include <linux/smp.h> | 14 | #include <linux/smp.h> |
15 | #include <linux/stat.h> | ||
15 | #include <linux/completion.h> | 16 | #include <linux/completion.h> |
16 | #include <linux/device.h> | 17 | #include <linux/device.h> |
17 | #include <linux/delay.h> | 18 | #include <linux/delay.h> |
diff --git a/arch/powerpc/platforms/pseries/nvram.c b/arch/powerpc/platforms/pseries/nvram.c index 00cc3a094885..a76b22844d18 100644 --- a/arch/powerpc/platforms/pseries/nvram.c +++ b/arch/powerpc/platforms/pseries/nvram.c | |||
@@ -18,6 +18,8 @@ | |||
18 | #include <linux/spinlock.h> | 18 | #include <linux/spinlock.h> |
19 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
20 | #include <linux/kmsg_dump.h> | 20 | #include <linux/kmsg_dump.h> |
21 | #include <linux/ctype.h> | ||
22 | #include <linux/zlib.h> | ||
21 | #include <asm/uaccess.h> | 23 | #include <asm/uaccess.h> |
22 | #include <asm/nvram.h> | 24 | #include <asm/nvram.h> |
23 | #include <asm/rtas.h> | 25 | #include <asm/rtas.h> |
@@ -78,8 +80,41 @@ static struct kmsg_dumper nvram_kmsg_dumper = { | |||
78 | #define NVRAM_RTAS_READ_TIMEOUT 5 /* seconds */ | 80 | #define NVRAM_RTAS_READ_TIMEOUT 5 /* seconds */ |
79 | static unsigned long last_unread_rtas_event; /* timestamp */ | 81 | static unsigned long last_unread_rtas_event; /* timestamp */ |
80 | 82 | ||
81 | /* We preallocate oops_buf during init to avoid kmalloc during oops/panic. */ | 83 | /* |
82 | static char *oops_buf; | 84 | * For capturing and compressing an oops or panic report... |
85 | |||
86 | * big_oops_buf[] holds the uncompressed text we're capturing. | ||
87 | * | ||
88 | * oops_buf[] holds the compressed text, preceded by a prefix. | ||
89 | * The prefix is just a u16 holding the length of the compressed* text. | ||
90 | * (*Or uncompressed, if compression fails.) oops_buf[] gets written | ||
91 | * to NVRAM. | ||
92 | * | ||
93 | * oops_len points to the prefix. oops_data points to the compressed text. | ||
94 | * | ||
95 | * +- oops_buf | ||
96 | * | +- oops_data | ||
97 | * v v | ||
98 | * +------------+-----------------------------------------------+ | ||
99 | * | length | text | | ||
100 | * | (2 bytes) | (oops_data_sz bytes) | | ||
101 | * +------------+-----------------------------------------------+ | ||
102 | * ^ | ||
103 | * +- oops_len | ||
104 | * | ||
105 | * We preallocate these buffers during init to avoid kmalloc during oops/panic. | ||
106 | */ | ||
107 | static size_t big_oops_buf_sz; | ||
108 | static char *big_oops_buf, *oops_buf; | ||
109 | static u16 *oops_len; | ||
110 | static char *oops_data; | ||
111 | static size_t oops_data_sz; | ||
112 | |||
113 | /* Compression parameters */ | ||
114 | #define COMPR_LEVEL 6 | ||
115 | #define WINDOW_BITS 12 | ||
116 | #define MEM_LEVEL 4 | ||
117 | static struct z_stream_s stream; | ||
83 | 118 | ||
84 | static ssize_t pSeries_nvram_read(char *buf, size_t count, loff_t *index) | 119 | static ssize_t pSeries_nvram_read(char *buf, size_t count, loff_t *index) |
85 | { | 120 | { |
@@ -387,11 +422,44 @@ static void __init nvram_init_oops_partition(int rtas_partition_exists) | |||
387 | sizeof(rtas_log_partition)); | 422 | sizeof(rtas_log_partition)); |
388 | } | 423 | } |
389 | oops_buf = kmalloc(oops_log_partition.size, GFP_KERNEL); | 424 | oops_buf = kmalloc(oops_log_partition.size, GFP_KERNEL); |
425 | if (!oops_buf) { | ||
426 | pr_err("nvram: No memory for %s partition\n", | ||
427 | oops_log_partition.name); | ||
428 | return; | ||
429 | } | ||
430 | oops_len = (u16*) oops_buf; | ||
431 | oops_data = oops_buf + sizeof(u16); | ||
432 | oops_data_sz = oops_log_partition.size - sizeof(u16); | ||
433 | |||
434 | /* | ||
435 | * Figure compression (preceded by elimination of each line's <n> | ||
436 | * severity prefix) will reduce the oops/panic report to at most | ||
437 | * 45% of its original size. | ||
438 | */ | ||
439 | big_oops_buf_sz = (oops_data_sz * 100) / 45; | ||
440 | big_oops_buf = kmalloc(big_oops_buf_sz, GFP_KERNEL); | ||
441 | if (big_oops_buf) { | ||
442 | stream.workspace = kmalloc(zlib_deflate_workspacesize( | ||
443 | WINDOW_BITS, MEM_LEVEL), GFP_KERNEL); | ||
444 | if (!stream.workspace) { | ||
445 | pr_err("nvram: No memory for compression workspace; " | ||
446 | "skipping compression of %s partition data\n", | ||
447 | oops_log_partition.name); | ||
448 | kfree(big_oops_buf); | ||
449 | big_oops_buf = NULL; | ||
450 | } | ||
451 | } else { | ||
452 | pr_err("No memory for uncompressed %s data; " | ||
453 | "skipping compression\n", oops_log_partition.name); | ||
454 | stream.workspace = NULL; | ||
455 | } | ||
456 | |||
390 | rc = kmsg_dump_register(&nvram_kmsg_dumper); | 457 | rc = kmsg_dump_register(&nvram_kmsg_dumper); |
391 | if (rc != 0) { | 458 | if (rc != 0) { |
392 | pr_err("nvram: kmsg_dump_register() failed; returned %d\n", rc); | 459 | pr_err("nvram: kmsg_dump_register() failed; returned %d\n", rc); |
393 | kfree(oops_buf); | 460 | kfree(oops_buf); |
394 | return; | 461 | kfree(big_oops_buf); |
462 | kfree(stream.workspace); | ||
395 | } | 463 | } |
396 | } | 464 | } |
397 | 465 | ||
@@ -473,7 +541,83 @@ static int clobbering_unread_rtas_event(void) | |||
473 | NVRAM_RTAS_READ_TIMEOUT); | 541 | NVRAM_RTAS_READ_TIMEOUT); |
474 | } | 542 | } |
475 | 543 | ||
476 | /* our kmsg_dump callback */ | 544 | /* Squeeze out each line's <n> severity prefix. */ |
545 | static size_t elide_severities(char *buf, size_t len) | ||
546 | { | ||
547 | char *in, *out, *buf_end = buf + len; | ||
548 | /* Assume a <n> at the very beginning marks the start of a line. */ | ||
549 | int newline = 1; | ||
550 | |||
551 | in = out = buf; | ||
552 | while (in < buf_end) { | ||
553 | if (newline && in+3 <= buf_end && | ||
554 | *in == '<' && isdigit(in[1]) && in[2] == '>') { | ||
555 | in += 3; | ||
556 | newline = 0; | ||
557 | } else { | ||
558 | newline = (*in == '\n'); | ||
559 | *out++ = *in++; | ||
560 | } | ||
561 | } | ||
562 | return out - buf; | ||
563 | } | ||
564 | |||
565 | /* Derived from logfs_compress() */ | ||
566 | static int nvram_compress(const void *in, void *out, size_t inlen, | ||
567 | size_t outlen) | ||
568 | { | ||
569 | int err, ret; | ||
570 | |||
571 | ret = -EIO; | ||
572 | err = zlib_deflateInit2(&stream, COMPR_LEVEL, Z_DEFLATED, WINDOW_BITS, | ||
573 | MEM_LEVEL, Z_DEFAULT_STRATEGY); | ||
574 | if (err != Z_OK) | ||
575 | goto error; | ||
576 | |||
577 | stream.next_in = in; | ||
578 | stream.avail_in = inlen; | ||
579 | stream.total_in = 0; | ||
580 | stream.next_out = out; | ||
581 | stream.avail_out = outlen; | ||
582 | stream.total_out = 0; | ||
583 | |||
584 | err = zlib_deflate(&stream, Z_FINISH); | ||
585 | if (err != Z_STREAM_END) | ||
586 | goto error; | ||
587 | |||
588 | err = zlib_deflateEnd(&stream); | ||
589 | if (err != Z_OK) | ||
590 | goto error; | ||
591 | |||
592 | if (stream.total_out >= stream.total_in) | ||
593 | goto error; | ||
594 | |||
595 | ret = stream.total_out; | ||
596 | error: | ||
597 | return ret; | ||
598 | } | ||
599 | |||
600 | /* Compress the text from big_oops_buf into oops_buf. */ | ||
601 | static int zip_oops(size_t text_len) | ||
602 | { | ||
603 | int zipped_len = nvram_compress(big_oops_buf, oops_data, text_len, | ||
604 | oops_data_sz); | ||
605 | if (zipped_len < 0) { | ||
606 | pr_err("nvram: compression failed; returned %d\n", zipped_len); | ||
607 | pr_err("nvram: logging uncompressed oops/panic report\n"); | ||
608 | return -1; | ||
609 | } | ||
610 | *oops_len = (u16) zipped_len; | ||
611 | return 0; | ||
612 | } | ||
613 | |||
614 | /* | ||
615 | * This is our kmsg_dump callback, called after an oops or panic report | ||
616 | * has been written to the printk buffer. We want to capture as much | ||
617 | * of the printk buffer as possible. First, capture as much as we can | ||
618 | * that we think will compress sufficiently to fit in the lnx,oops-log | ||
619 | * partition. If that's too much, go back and capture uncompressed text. | ||
620 | */ | ||
477 | static void oops_to_nvram(struct kmsg_dumper *dumper, | 621 | static void oops_to_nvram(struct kmsg_dumper *dumper, |
478 | enum kmsg_dump_reason reason, | 622 | enum kmsg_dump_reason reason, |
479 | const char *old_msgs, unsigned long old_len, | 623 | const char *old_msgs, unsigned long old_len, |
@@ -482,6 +626,8 @@ static void oops_to_nvram(struct kmsg_dumper *dumper, | |||
482 | static unsigned int oops_count = 0; | 626 | static unsigned int oops_count = 0; |
483 | static bool panicking = false; | 627 | static bool panicking = false; |
484 | size_t text_len; | 628 | size_t text_len; |
629 | unsigned int err_type = ERR_TYPE_KERNEL_PANIC_GZ; | ||
630 | int rc = -1; | ||
485 | 631 | ||
486 | switch (reason) { | 632 | switch (reason) { |
487 | case KMSG_DUMP_RESTART: | 633 | case KMSG_DUMP_RESTART: |
@@ -509,8 +655,19 @@ static void oops_to_nvram(struct kmsg_dumper *dumper, | |||
509 | if (clobbering_unread_rtas_event()) | 655 | if (clobbering_unread_rtas_event()) |
510 | return; | 656 | return; |
511 | 657 | ||
512 | text_len = capture_last_msgs(old_msgs, old_len, new_msgs, new_len, | 658 | if (big_oops_buf) { |
513 | oops_buf, oops_log_partition.size); | 659 | text_len = capture_last_msgs(old_msgs, old_len, |
660 | new_msgs, new_len, big_oops_buf, big_oops_buf_sz); | ||
661 | text_len = elide_severities(big_oops_buf, text_len); | ||
662 | rc = zip_oops(text_len); | ||
663 | } | ||
664 | if (rc != 0) { | ||
665 | text_len = capture_last_msgs(old_msgs, old_len, | ||
666 | new_msgs, new_len, oops_data, oops_data_sz); | ||
667 | err_type = ERR_TYPE_KERNEL_PANIC; | ||
668 | *oops_len = (u16) text_len; | ||
669 | } | ||
670 | |||
514 | (void) nvram_write_os_partition(&oops_log_partition, oops_buf, | 671 | (void) nvram_write_os_partition(&oops_log_partition, oops_buf, |
515 | (int) text_len, ERR_TYPE_KERNEL_PANIC, ++oops_count); | 672 | (int) (sizeof(*oops_len) + *oops_len), err_type, ++oops_count); |
516 | } | 673 | } |
diff --git a/arch/powerpc/platforms/pseries/pci_dlpar.c b/arch/powerpc/platforms/pseries/pci_dlpar.c index 3bf4488aaec6..55d4ec1bd1ac 100644 --- a/arch/powerpc/platforms/pseries/pci_dlpar.c +++ b/arch/powerpc/platforms/pseries/pci_dlpar.c | |||
@@ -26,6 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | #include <linux/pci.h> | 28 | #include <linux/pci.h> |
29 | #include <linux/export.h> | ||
29 | #include <asm/pci-bridge.h> | 30 | #include <asm/pci-bridge.h> |
30 | #include <asm/ppc-pci.h> | 31 | #include <asm/ppc-pci.h> |
31 | #include <asm/firmware.h> | 32 | #include <asm/firmware.h> |
diff --git a/arch/powerpc/platforms/pseries/plpar_wrappers.h b/arch/powerpc/platforms/pseries/plpar_wrappers.h index 41c24c146d6a..342797fc0f9c 100644 --- a/arch/powerpc/platforms/pseries/plpar_wrappers.h +++ b/arch/powerpc/platforms/pseries/plpar_wrappers.h | |||
@@ -1,7 +1,10 @@ | |||
1 | #ifndef _PSERIES_PLPAR_WRAPPERS_H | 1 | #ifndef _PSERIES_PLPAR_WRAPPERS_H |
2 | #define _PSERIES_PLPAR_WRAPPERS_H | 2 | #define _PSERIES_PLPAR_WRAPPERS_H |
3 | 3 | ||
4 | #include <linux/string.h> | ||
5 | |||
4 | #include <asm/hvcall.h> | 6 | #include <asm/hvcall.h> |
7 | #include <asm/paca.h> | ||
5 | #include <asm/page.h> | 8 | #include <asm/page.h> |
6 | 9 | ||
7 | /* Get state of physical CPU from query_cpu_stopped */ | 10 | /* Get state of physical CPU from query_cpu_stopped */ |
diff --git a/arch/powerpc/platforms/pseries/setup.c b/arch/powerpc/platforms/pseries/setup.c index 0969fd98c4fa..c3408ca8855e 100644 --- a/arch/powerpc/platforms/pseries/setup.c +++ b/arch/powerpc/platforms/pseries/setup.c | |||
@@ -34,7 +34,7 @@ | |||
34 | #include <linux/pci.h> | 34 | #include <linux/pci.h> |
35 | #include <linux/utsname.h> | 35 | #include <linux/utsname.h> |
36 | #include <linux/adb.h> | 36 | #include <linux/adb.h> |
37 | #include <linux/module.h> | 37 | #include <linux/export.h> |
38 | #include <linux/delay.h> | 38 | #include <linux/delay.h> |
39 | #include <linux/irq.h> | 39 | #include <linux/irq.h> |
40 | #include <linux/seq_file.h> | 40 | #include <linux/seq_file.h> |
diff --git a/arch/powerpc/platforms/pseries/smp.c b/arch/powerpc/platforms/pseries/smp.c index 4e44c4dcd11c..26e93fd4c62b 100644 --- a/arch/powerpc/platforms/pseries/smp.c +++ b/arch/powerpc/platforms/pseries/smp.c | |||
@@ -14,7 +14,6 @@ | |||
14 | 14 | ||
15 | 15 | ||
16 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
17 | #include <linux/module.h> | ||
18 | #include <linux/sched.h> | 17 | #include <linux/sched.h> |
19 | #include <linux/smp.h> | 18 | #include <linux/smp.h> |
20 | #include <linux/interrupt.h> | 19 | #include <linux/interrupt.h> |
diff --git a/arch/powerpc/platforms/pseries/suspend.c b/arch/powerpc/platforms/pseries/suspend.c index a8ca289ff267..d3de0849f296 100644 --- a/arch/powerpc/platforms/pseries/suspend.c +++ b/arch/powerpc/platforms/pseries/suspend.c | |||
@@ -18,6 +18,7 @@ | |||
18 | 18 | ||
19 | #include <linux/delay.h> | 19 | #include <linux/delay.h> |
20 | #include <linux/suspend.h> | 20 | #include <linux/suspend.h> |
21 | #include <linux/stat.h> | ||
21 | #include <asm/firmware.h> | 22 | #include <asm/firmware.h> |
22 | #include <asm/hvcall.h> | 23 | #include <asm/hvcall.h> |
23 | #include <asm/machdep.h> | 24 | #include <asm/machdep.h> |
diff --git a/arch/powerpc/platforms/wsp/Kconfig b/arch/powerpc/platforms/wsp/Kconfig index c3c48eb62cc1..bd560c786ed6 100644 --- a/arch/powerpc/platforms/wsp/Kconfig +++ b/arch/powerpc/platforms/wsp/Kconfig | |||
@@ -1,5 +1,12 @@ | |||
1 | config PPC_WSP | 1 | config PPC_WSP |
2 | bool | 2 | bool |
3 | select PPC_A2 | ||
4 | select PPC_SCOM | ||
5 | select PPC_XICS | ||
6 | select PPC_ICP_NATIVE | ||
7 | select PCI | ||
8 | select PPC_IO_WORKAROUNDS if PCI | ||
9 | select PPC_INDIRECT_PIO if PCI | ||
3 | default n | 10 | default n |
4 | 11 | ||
5 | menu "WSP platform selection" | 12 | menu "WSP platform selection" |
@@ -7,13 +14,9 @@ menu "WSP platform selection" | |||
7 | 14 | ||
8 | config PPC_PSR2 | 15 | config PPC_PSR2 |
9 | bool "PSR-2 platform" | 16 | bool "PSR-2 platform" |
10 | select PPC_A2 | ||
11 | select GENERIC_TBSYNC | 17 | select GENERIC_TBSYNC |
12 | select PPC_SCOM | ||
13 | select EPAPR_BOOT | 18 | select EPAPR_BOOT |
14 | select PPC_WSP | 19 | select PPC_WSP |
15 | select PPC_XICS | ||
16 | select PPC_ICP_NATIVE | ||
17 | default y | 20 | default y |
18 | 21 | ||
19 | endmenu | 22 | endmenu |
@@ -21,8 +24,3 @@ endmenu | |||
21 | config PPC_A2_DD2 | 24 | config PPC_A2_DD2 |
22 | bool "Support for DD2 based A2/WSP systems" | 25 | bool "Support for DD2 based A2/WSP systems" |
23 | depends on PPC_A2 | 26 | depends on PPC_A2 |
24 | |||
25 | config WORKAROUND_ERRATUM_463 | ||
26 | depends on PPC_A2_DD2 | ||
27 | bool "Workaround erratum 463" | ||
28 | default y | ||
diff --git a/arch/powerpc/platforms/wsp/Makefile b/arch/powerpc/platforms/wsp/Makefile index 095be73d6cd4..a1486b436f02 100644 --- a/arch/powerpc/platforms/wsp/Makefile +++ b/arch/powerpc/platforms/wsp/Makefile | |||
@@ -4,3 +4,5 @@ obj-y += setup.o ics.o | |||
4 | obj-$(CONFIG_PPC_PSR2) += psr2.o opb_pic.o | 4 | obj-$(CONFIG_PPC_PSR2) += psr2.o opb_pic.o |
5 | obj-$(CONFIG_PPC_WSP) += scom_wsp.o | 5 | obj-$(CONFIG_PPC_WSP) += scom_wsp.o |
6 | obj-$(CONFIG_SMP) += smp.o scom_smp.o | 6 | obj-$(CONFIG_SMP) += smp.o scom_smp.o |
7 | obj-$(CONFIG_PCI) += wsp_pci.o | ||
8 | obj-$(CONFIG_PCI_MSI) += msi.o \ No newline at end of file | ||
diff --git a/arch/powerpc/platforms/wsp/ics.c b/arch/powerpc/platforms/wsp/ics.c index e53bd9e7b125..576874392543 100644 --- a/arch/powerpc/platforms/wsp/ics.c +++ b/arch/powerpc/platforms/wsp/ics.c | |||
@@ -710,3 +710,51 @@ void __init wsp_init_irq(void) | |||
710 | /* We need to patch our irq chip's EOI to point to the right ICP */ | 710 | /* We need to patch our irq chip's EOI to point to the right ICP */ |
711 | wsp_irq_chip.irq_eoi = icp_ops->eoi; | 711 | wsp_irq_chip.irq_eoi = icp_ops->eoi; |
712 | } | 712 | } |
713 | |||
714 | #ifdef CONFIG_PCI_MSI | ||
715 | static void wsp_ics_msi_unmask_irq(struct irq_data *d) | ||
716 | { | ||
717 | wsp_chip_unmask_irq(d); | ||
718 | unmask_msi_irq(d); | ||
719 | } | ||
720 | |||
721 | static unsigned int wsp_ics_msi_startup(struct irq_data *d) | ||
722 | { | ||
723 | wsp_ics_msi_unmask_irq(d); | ||
724 | return 0; | ||
725 | } | ||
726 | |||
727 | static void wsp_ics_msi_mask_irq(struct irq_data *d) | ||
728 | { | ||
729 | mask_msi_irq(d); | ||
730 | wsp_chip_mask_irq(d); | ||
731 | } | ||
732 | |||
733 | /* | ||
734 | * we do it this way because we reassinge default EOI handling in | ||
735 | * irq_init() above | ||
736 | */ | ||
737 | static void wsp_ics_eoi(struct irq_data *data) | ||
738 | { | ||
739 | wsp_irq_chip.irq_eoi(data); | ||
740 | } | ||
741 | |||
742 | static struct irq_chip wsp_ics_msi = { | ||
743 | .name = "WSP ICS MSI", | ||
744 | .irq_startup = wsp_ics_msi_startup, | ||
745 | .irq_mask = wsp_ics_msi_mask_irq, | ||
746 | .irq_unmask = wsp_ics_msi_unmask_irq, | ||
747 | .irq_eoi = wsp_ics_eoi, | ||
748 | .irq_set_affinity = wsp_chip_set_affinity | ||
749 | }; | ||
750 | |||
751 | void wsp_ics_set_msi_chip(unsigned int irq) | ||
752 | { | ||
753 | irq_set_chip(irq, &wsp_ics_msi); | ||
754 | } | ||
755 | |||
756 | void wsp_ics_set_std_chip(unsigned int irq) | ||
757 | { | ||
758 | irq_set_chip(irq, &wsp_irq_chip); | ||
759 | } | ||
760 | #endif /* CONFIG_PCI_MSI */ | ||
diff --git a/arch/powerpc/platforms/wsp/ics.h b/arch/powerpc/platforms/wsp/ics.h index e34d53102640..07b644e0cf97 100644 --- a/arch/powerpc/platforms/wsp/ics.h +++ b/arch/powerpc/platforms/wsp/ics.h | |||
@@ -17,4 +17,9 @@ extern void wsp_init_irq(void); | |||
17 | extern int wsp_ics_alloc_irq(struct device_node *dn, int num); | 17 | extern int wsp_ics_alloc_irq(struct device_node *dn, int num); |
18 | extern void wsp_ics_free_irq(struct device_node *dn, unsigned int irq); | 18 | extern void wsp_ics_free_irq(struct device_node *dn, unsigned int irq); |
19 | 19 | ||
20 | #ifdef CONFIG_PCI_MSI | ||
21 | extern void wsp_ics_set_msi_chip(unsigned int irq); | ||
22 | extern void wsp_ics_set_std_chip(unsigned int irq); | ||
23 | #endif /* CONFIG_PCI_MSI */ | ||
24 | |||
20 | #endif /* __ICS_H */ | 25 | #endif /* __ICS_H */ |
diff --git a/arch/powerpc/platforms/wsp/msi.c b/arch/powerpc/platforms/wsp/msi.c new file mode 100644 index 000000000000..380882f27add --- /dev/null +++ b/arch/powerpc/platforms/wsp/msi.c | |||
@@ -0,0 +1,102 @@ | |||
1 | /* | ||
2 | * Copyright 2011 Michael Ellerman, IBM Corp. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation; either version | ||
7 | * 2 of the License, or (at your option) any later version. | ||
8 | */ | ||
9 | |||
10 | #include <linux/kernel.h> | ||
11 | #include <linux/pci.h> | ||
12 | #include <linux/msi.h> | ||
13 | #include <linux/irq.h> | ||
14 | #include <linux/interrupt.h> | ||
15 | |||
16 | #include "msi.h" | ||
17 | #include "ics.h" | ||
18 | #include "wsp_pci.h" | ||
19 | |||
20 | /* Magic addresses for 32 & 64-bit MSIs with hardcoded MVE 0 */ | ||
21 | #define MSI_ADDR_32 0xFFFF0000ul | ||
22 | #define MSI_ADDR_64 0x1000000000000000ul | ||
23 | |||
24 | int wsp_setup_msi_irqs(struct pci_dev *dev, int nvec, int type) | ||
25 | { | ||
26 | struct pci_controller *phb; | ||
27 | struct msi_desc *entry; | ||
28 | struct msi_msg msg; | ||
29 | unsigned int virq; | ||
30 | int hwirq; | ||
31 | |||
32 | phb = pci_bus_to_host(dev->bus); | ||
33 | if (!phb) | ||
34 | return -ENOENT; | ||
35 | |||
36 | entry = list_first_entry(&dev->msi_list, struct msi_desc, list); | ||
37 | if (entry->msi_attrib.is_64) { | ||
38 | msg.address_lo = 0; | ||
39 | msg.address_hi = MSI_ADDR_64 >> 32; | ||
40 | } else { | ||
41 | msg.address_lo = MSI_ADDR_32; | ||
42 | msg.address_hi = 0; | ||
43 | } | ||
44 | |||
45 | list_for_each_entry(entry, &dev->msi_list, list) { | ||
46 | hwirq = wsp_ics_alloc_irq(phb->dn, 1); | ||
47 | if (hwirq < 0) { | ||
48 | dev_warn(&dev->dev, "wsp_msi: hwirq alloc failed!\n"); | ||
49 | return hwirq; | ||
50 | } | ||
51 | |||
52 | virq = irq_create_mapping(NULL, hwirq); | ||
53 | if (virq == NO_IRQ) { | ||
54 | dev_warn(&dev->dev, "wsp_msi: virq alloc failed!\n"); | ||
55 | return -1; | ||
56 | } | ||
57 | |||
58 | dev_dbg(&dev->dev, "wsp_msi: allocated irq %#x/%#x\n", | ||
59 | hwirq, virq); | ||
60 | |||
61 | wsp_ics_set_msi_chip(virq); | ||
62 | irq_set_msi_desc(virq, entry); | ||
63 | msg.data = hwirq & XIVE_ADDR_MASK; | ||
64 | write_msi_msg(virq, &msg); | ||
65 | } | ||
66 | |||
67 | return 0; | ||
68 | } | ||
69 | |||
70 | void wsp_teardown_msi_irqs(struct pci_dev *dev) | ||
71 | { | ||
72 | struct pci_controller *phb; | ||
73 | struct msi_desc *entry; | ||
74 | int hwirq; | ||
75 | |||
76 | phb = pci_bus_to_host(dev->bus); | ||
77 | |||
78 | dev_dbg(&dev->dev, "wsp_msi: tearing down msi irqs\n"); | ||
79 | |||
80 | list_for_each_entry(entry, &dev->msi_list, list) { | ||
81 | if (entry->irq == NO_IRQ) | ||
82 | continue; | ||
83 | |||
84 | irq_set_msi_desc(entry->irq, NULL); | ||
85 | wsp_ics_set_std_chip(entry->irq); | ||
86 | |||
87 | hwirq = virq_to_hw(entry->irq); | ||
88 | /* In this order to avoid racing with irq_create_mapping() */ | ||
89 | irq_dispose_mapping(entry->irq); | ||
90 | wsp_ics_free_irq(phb->dn, hwirq); | ||
91 | } | ||
92 | } | ||
93 | |||
94 | void wsp_setup_phb_msi(struct pci_controller *phb) | ||
95 | { | ||
96 | /* Create a single MVE at offset 0 that matches everything */ | ||
97 | out_be64(phb->cfg_data + PCIE_REG_IODA_ADDR, PCIE_REG_IODA_AD_TBL_MVT); | ||
98 | out_be64(phb->cfg_data + PCIE_REG_IODA_DATA0, 1ull << 63); | ||
99 | |||
100 | ppc_md.setup_msi_irqs = wsp_setup_msi_irqs; | ||
101 | ppc_md.teardown_msi_irqs = wsp_teardown_msi_irqs; | ||
102 | } | ||
diff --git a/arch/powerpc/platforms/wsp/msi.h b/arch/powerpc/platforms/wsp/msi.h new file mode 100644 index 000000000000..0ab27b71b24d --- /dev/null +++ b/arch/powerpc/platforms/wsp/msi.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* | ||
2 | * Copyright 2011 Michael Ellerman, IBM Corp. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation; either version | ||
7 | * 2 of the License, or (at your option) any later version. | ||
8 | */ | ||
9 | |||
10 | #ifndef __WSP_MSI_H | ||
11 | #define __WSP_MSI_H | ||
12 | |||
13 | #ifdef CONFIG_PCI_MSI | ||
14 | extern void wsp_setup_phb_msi(struct pci_controller *phb); | ||
15 | #else | ||
16 | static inline void wsp_setup_phb_msi(struct pci_controller *phb) { } | ||
17 | #endif | ||
18 | |||
19 | #endif /* __WSP_MSI_H */ | ||
diff --git a/arch/powerpc/platforms/wsp/psr2.c b/arch/powerpc/platforms/wsp/psr2.c index 40f28916ff6c..166f2e4b4bee 100644 --- a/arch/powerpc/platforms/wsp/psr2.c +++ b/arch/powerpc/platforms/wsp/psr2.c | |||
@@ -63,6 +63,10 @@ static void __init psr2_setup_arch(void) | |||
63 | #ifdef CONFIG_SMP | 63 | #ifdef CONFIG_SMP |
64 | a2_setup_smp(); | 64 | a2_setup_smp(); |
65 | #endif | 65 | #endif |
66 | #ifdef CONFIG_PCI | ||
67 | wsp_setup_pci(); | ||
68 | #endif | ||
69 | |||
66 | } | 70 | } |
67 | 71 | ||
68 | static int __init psr2_probe(void) | 72 | static int __init psr2_probe(void) |
diff --git a/arch/powerpc/platforms/wsp/wsp.h b/arch/powerpc/platforms/wsp/wsp.h index 7c3e087fd2f2..33479818f62a 100644 --- a/arch/powerpc/platforms/wsp/wsp.h +++ b/arch/powerpc/platforms/wsp/wsp.h | |||
@@ -3,6 +3,9 @@ | |||
3 | 3 | ||
4 | #include <asm/wsp.h> | 4 | #include <asm/wsp.h> |
5 | 5 | ||
6 | /* Devtree compatible strings for major devices */ | ||
7 | #define PCIE_COMPATIBLE "ibm,wsp-pciex" | ||
8 | |||
6 | extern void wsp_setup_pci(void); | 9 | extern void wsp_setup_pci(void); |
7 | extern void scom_init_wsp(void); | 10 | extern void scom_init_wsp(void); |
8 | 11 | ||
diff --git a/arch/powerpc/platforms/wsp/wsp_pci.c b/arch/powerpc/platforms/wsp/wsp_pci.c new file mode 100644 index 000000000000..e0262cd0e2d3 --- /dev/null +++ b/arch/powerpc/platforms/wsp/wsp_pci.c | |||
@@ -0,0 +1,1133 @@ | |||
1 | /* | ||
2 | * Copyright 2010 Ben Herrenschmidt, IBM Corporation | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation; either version | ||
7 | * 2 of the License, or (at your option) any later version. | ||
8 | */ | ||
9 | |||
10 | #define DEBUG | ||
11 | |||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/pci.h> | ||
14 | #include <linux/delay.h> | ||
15 | #include <linux/string.h> | ||
16 | #include <linux/init.h> | ||
17 | #include <linux/bootmem.h> | ||
18 | #include <linux/irq.h> | ||
19 | #include <linux/interrupt.h> | ||
20 | #include <linux/debugfs.h> | ||
21 | |||
22 | #include <asm/sections.h> | ||
23 | #include <asm/io.h> | ||
24 | #include <asm/prom.h> | ||
25 | #include <asm/pci-bridge.h> | ||
26 | #include <asm/machdep.h> | ||
27 | #include <asm/ppc-pci.h> | ||
28 | #include <asm/iommu.h> | ||
29 | #include <asm/io-workarounds.h> | ||
30 | |||
31 | #include "wsp.h" | ||
32 | #include "wsp_pci.h" | ||
33 | #include "msi.h" | ||
34 | |||
35 | |||
36 | /* Max number of TVTs for one table. Only 32-bit tables can use | ||
37 | * multiple TVTs and so the max currently supported is thus 8 | ||
38 | * since only 2G of DMA space is supported | ||
39 | */ | ||
40 | #define MAX_TABLE_TVT_COUNT 8 | ||
41 | |||
42 | struct wsp_dma_table { | ||
43 | struct list_head link; | ||
44 | struct iommu_table table; | ||
45 | struct wsp_phb *phb; | ||
46 | struct page *tces[MAX_TABLE_TVT_COUNT]; | ||
47 | }; | ||
48 | |||
49 | /* We support DMA regions from 0...2G in 32bit space (no support for | ||
50 | * 64-bit DMA just yet). Each device gets a separate TCE table (TVT | ||
51 | * entry) with validation enabled (though not supported by SimiCS | ||
52 | * just yet). | ||
53 | * | ||
54 | * To simplify things, we divide this 2G space into N regions based | ||
55 | * on the constant below which could be turned into a tunable eventually | ||
56 | * | ||
57 | * We then assign dynamically those regions to devices as they show up. | ||
58 | * | ||
59 | * We use a bitmap as an allocator for these. | ||
60 | * | ||
61 | * Tables are allocated/created dynamically as devices are discovered, | ||
62 | * multiple TVT entries are used if needed | ||
63 | * | ||
64 | * When 64-bit DMA support is added we should simply use a separate set | ||
65 | * of larger regions (the HW supports 64 TVT entries). We can | ||
66 | * additionally create a bypass region in 64-bit space for performances | ||
67 | * though that would have a cost in term of security. | ||
68 | * | ||
69 | * If you set NUM_DMA32_REGIONS to 1, then a single table is shared | ||
70 | * for all devices and bus/dev/fn validation is disabled | ||
71 | * | ||
72 | * Note that a DMA32 region cannot be smaller than 256M so the max | ||
73 | * supported here for now is 8. We don't yet support sharing regions | ||
74 | * between multiple devices so the max number of devices supported | ||
75 | * is MAX_TABLE_TVT_COUNT. | ||
76 | */ | ||
77 | #define NUM_DMA32_REGIONS 1 | ||
78 | |||
79 | struct wsp_phb { | ||
80 | struct pci_controller *hose; | ||
81 | |||
82 | /* Lock controlling access to the list of dma tables. | ||
83 | * It does -not- protect against dma_* operations on | ||
84 | * those tables, those should be stopped before an entry | ||
85 | * is removed from the list. | ||
86 | * | ||
87 | * The lock is also used for error handling operations | ||
88 | */ | ||
89 | spinlock_t lock; | ||
90 | struct list_head dma_tables; | ||
91 | unsigned long dma32_map; | ||
92 | unsigned long dma32_base; | ||
93 | unsigned int dma32_num_regions; | ||
94 | unsigned long dma32_region_size; | ||
95 | |||
96 | /* Debugfs stuff */ | ||
97 | struct dentry *ddir; | ||
98 | |||
99 | struct list_head all; | ||
100 | }; | ||
101 | static LIST_HEAD(wsp_phbs); | ||
102 | |||
103 | //#define cfg_debug(fmt...) pr_debug(fmt) | ||
104 | #define cfg_debug(fmt...) | ||
105 | |||
106 | |||
107 | static int wsp_pcie_read_config(struct pci_bus *bus, unsigned int devfn, | ||
108 | int offset, int len, u32 *val) | ||
109 | { | ||
110 | struct pci_controller *hose; | ||
111 | int suboff; | ||
112 | u64 addr; | ||
113 | |||
114 | hose = pci_bus_to_host(bus); | ||
115 | if (hose == NULL) | ||
116 | return PCIBIOS_DEVICE_NOT_FOUND; | ||
117 | if (offset >= 0x1000) | ||
118 | return PCIBIOS_BAD_REGISTER_NUMBER; | ||
119 | addr = PCIE_REG_CA_ENABLE | | ||
120 | ((u64)bus->number) << PCIE_REG_CA_BUS_SHIFT | | ||
121 | ((u64)devfn) << PCIE_REG_CA_FUNC_SHIFT | | ||
122 | ((u64)offset & ~3) << PCIE_REG_CA_REG_SHIFT; | ||
123 | suboff = offset & 3; | ||
124 | |||
125 | /* | ||
126 | * Note: the caller has already checked that offset is | ||
127 | * suitably aligned and that len is 1, 2 or 4. | ||
128 | */ | ||
129 | |||
130 | switch (len) { | ||
131 | case 1: | ||
132 | addr |= (0x8ul >> suboff) << PCIE_REG_CA_BE_SHIFT; | ||
133 | out_be64(hose->cfg_data + PCIE_REG_CONFIG_ADDRESS, addr); | ||
134 | *val = (in_le32(hose->cfg_data + PCIE_REG_CONFIG_DATA) | ||
135 | >> (suboff << 3)) & 0xff; | ||
136 | cfg_debug("read 1 %02x:%02x:%02x + %02x/%x addr=0x%llx val=%02x\n", | ||
137 | bus->number, devfn >> 3, devfn & 7, | ||
138 | offset, suboff, addr, *val); | ||
139 | break; | ||
140 | case 2: | ||
141 | addr |= (0xcul >> suboff) << PCIE_REG_CA_BE_SHIFT; | ||
142 | out_be64(hose->cfg_data + PCIE_REG_CONFIG_ADDRESS, addr); | ||
143 | *val = (in_le32(hose->cfg_data + PCIE_REG_CONFIG_DATA) | ||
144 | >> (suboff << 3)) & 0xffff; | ||
145 | cfg_debug("read 2 %02x:%02x:%02x + %02x/%x addr=0x%llx val=%04x\n", | ||
146 | bus->number, devfn >> 3, devfn & 7, | ||
147 | offset, suboff, addr, *val); | ||
148 | break; | ||
149 | default: | ||
150 | addr |= 0xful << PCIE_REG_CA_BE_SHIFT; | ||
151 | out_be64(hose->cfg_data + PCIE_REG_CONFIG_ADDRESS, addr); | ||
152 | *val = in_le32(hose->cfg_data + PCIE_REG_CONFIG_DATA); | ||
153 | cfg_debug("read 4 %02x:%02x:%02x + %02x/%x addr=0x%llx val=%08x\n", | ||
154 | bus->number, devfn >> 3, devfn & 7, | ||
155 | offset, suboff, addr, *val); | ||
156 | break; | ||
157 | } | ||
158 | return PCIBIOS_SUCCESSFUL; | ||
159 | } | ||
160 | |||
161 | static int wsp_pcie_write_config(struct pci_bus *bus, unsigned int devfn, | ||
162 | int offset, int len, u32 val) | ||
163 | { | ||
164 | struct pci_controller *hose; | ||
165 | int suboff; | ||
166 | u64 addr; | ||
167 | |||
168 | hose = pci_bus_to_host(bus); | ||
169 | if (hose == NULL) | ||
170 | return PCIBIOS_DEVICE_NOT_FOUND; | ||
171 | if (offset >= 0x1000) | ||
172 | return PCIBIOS_BAD_REGISTER_NUMBER; | ||
173 | addr = PCIE_REG_CA_ENABLE | | ||
174 | ((u64)bus->number) << PCIE_REG_CA_BUS_SHIFT | | ||
175 | ((u64)devfn) << PCIE_REG_CA_FUNC_SHIFT | | ||
176 | ((u64)offset & ~3) << PCIE_REG_CA_REG_SHIFT; | ||
177 | suboff = offset & 3; | ||
178 | |||
179 | /* | ||
180 | * Note: the caller has already checked that offset is | ||
181 | * suitably aligned and that len is 1, 2 or 4. | ||
182 | */ | ||
183 | switch (len) { | ||
184 | case 1: | ||
185 | addr |= (0x8ul >> suboff) << PCIE_REG_CA_BE_SHIFT; | ||
186 | val <<= suboff << 3; | ||
187 | out_be64(hose->cfg_data + PCIE_REG_CONFIG_ADDRESS, addr); | ||
188 | out_le32(hose->cfg_data + PCIE_REG_CONFIG_DATA, val); | ||
189 | cfg_debug("write 1 %02x:%02x:%02x + %02x/%x addr=0x%llx val=%02x\n", | ||
190 | bus->number, devfn >> 3, devfn & 7, | ||
191 | offset, suboff, addr, val); | ||
192 | break; | ||
193 | case 2: | ||
194 | addr |= (0xcul >> suboff) << PCIE_REG_CA_BE_SHIFT; | ||
195 | val <<= suboff << 3; | ||
196 | out_be64(hose->cfg_data + PCIE_REG_CONFIG_ADDRESS, addr); | ||
197 | out_le32(hose->cfg_data + PCIE_REG_CONFIG_DATA, val); | ||
198 | cfg_debug("write 2 %02x:%02x:%02x + %02x/%x addr=0x%llx val=%04x\n", | ||
199 | bus->number, devfn >> 3, devfn & 7, | ||
200 | offset, suboff, addr, val); | ||
201 | break; | ||
202 | default: | ||
203 | addr |= 0xful << PCIE_REG_CA_BE_SHIFT; | ||
204 | out_be64(hose->cfg_data + PCIE_REG_CONFIG_ADDRESS, addr); | ||
205 | out_le32(hose->cfg_data + PCIE_REG_CONFIG_DATA, val); | ||
206 | cfg_debug("write 4 %02x:%02x:%02x + %02x/%x addr=0x%llx val=%08x\n", | ||
207 | bus->number, devfn >> 3, devfn & 7, | ||
208 | offset, suboff, addr, val); | ||
209 | break; | ||
210 | } | ||
211 | return PCIBIOS_SUCCESSFUL; | ||
212 | } | ||
213 | |||
214 | static struct pci_ops wsp_pcie_pci_ops = | ||
215 | { | ||
216 | .read = wsp_pcie_read_config, | ||
217 | .write = wsp_pcie_write_config, | ||
218 | }; | ||
219 | |||
220 | #define TCE_SHIFT 12 | ||
221 | #define TCE_PAGE_SIZE (1 << TCE_SHIFT) | ||
222 | #define TCE_PCI_WRITE 0x2 /* write from PCI allowed */ | ||
223 | #define TCE_PCI_READ 0x1 /* read from PCI allowed */ | ||
224 | #define TCE_RPN_MASK 0x3fffffffffful /* 42-bit RPN (4K pages) */ | ||
225 | #define TCE_RPN_SHIFT 12 | ||
226 | |||
227 | //#define dma_debug(fmt...) pr_debug(fmt) | ||
228 | #define dma_debug(fmt...) | ||
229 | |||
230 | static int tce_build_wsp(struct iommu_table *tbl, long index, long npages, | ||
231 | unsigned long uaddr, enum dma_data_direction direction, | ||
232 | struct dma_attrs *attrs) | ||
233 | { | ||
234 | struct wsp_dma_table *ptbl = container_of(tbl, | ||
235 | struct wsp_dma_table, | ||
236 | table); | ||
237 | u64 proto_tce; | ||
238 | u64 *tcep; | ||
239 | u64 rpn; | ||
240 | |||
241 | proto_tce = TCE_PCI_READ; | ||
242 | #ifdef CONFIG_WSP_DD1_WORKAROUND_DD1_TCE_BUGS | ||
243 | proto_tce |= TCE_PCI_WRITE; | ||
244 | #else | ||
245 | if (direction != DMA_TO_DEVICE) | ||
246 | proto_tce |= TCE_PCI_WRITE; | ||
247 | #endif | ||
248 | |||
249 | /* XXX Make this faster by factoring out the page address for | ||
250 | * within a TCE table | ||
251 | */ | ||
252 | while (npages--) { | ||
253 | /* We don't use it->base as the table can be scattered */ | ||
254 | tcep = (u64 *)page_address(ptbl->tces[index >> 16]); | ||
255 | tcep += (index & 0xffff); | ||
256 | |||
257 | /* can't move this out since we might cross LMB boundary */ | ||
258 | rpn = __pa(uaddr) >> TCE_SHIFT; | ||
259 | *tcep = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT; | ||
260 | |||
261 | dma_debug("[DMA] TCE %p set to 0x%016llx (dma addr: 0x%lx)\n", | ||
262 | tcep, *tcep, (tbl->it_offset + index) << IOMMU_PAGE_SHIFT); | ||
263 | |||
264 | uaddr += TCE_PAGE_SIZE; | ||
265 | index++; | ||
266 | } | ||
267 | return 0; | ||
268 | } | ||
269 | |||
270 | static void tce_free_wsp(struct iommu_table *tbl, long index, long npages) | ||
271 | { | ||
272 | struct wsp_dma_table *ptbl = container_of(tbl, | ||
273 | struct wsp_dma_table, | ||
274 | table); | ||
275 | #ifndef CONFIG_WSP_DD1_WORKAROUND_DD1_TCE_BUGS | ||
276 | struct pci_controller *hose = ptbl->phb->hose; | ||
277 | #endif | ||
278 | u64 *tcep; | ||
279 | |||
280 | /* XXX Make this faster by factoring out the page address for | ||
281 | * within a TCE table. Also use line-kill option to kill multiple | ||
282 | * TCEs at once | ||
283 | */ | ||
284 | while (npages--) { | ||
285 | /* We don't use it->base as the table can be scattered */ | ||
286 | tcep = (u64 *)page_address(ptbl->tces[index >> 16]); | ||
287 | tcep += (index & 0xffff); | ||
288 | dma_debug("[DMA] TCE %p cleared\n", tcep); | ||
289 | *tcep = 0; | ||
290 | #ifndef CONFIG_WSP_DD1_WORKAROUND_DD1_TCE_BUGS | ||
291 | /* Don't write there since it would pollute other MMIO accesses */ | ||
292 | out_be64(hose->cfg_data + PCIE_REG_TCE_KILL, | ||
293 | PCIE_REG_TCEKILL_SINGLE | PCIE_REG_TCEKILL_PS_4K | | ||
294 | (__pa(tcep) & PCIE_REG_TCEKILL_ADDR_MASK)); | ||
295 | #endif | ||
296 | index++; | ||
297 | } | ||
298 | } | ||
299 | |||
300 | static struct wsp_dma_table *wsp_pci_create_dma32_table(struct wsp_phb *phb, | ||
301 | unsigned int region, | ||
302 | struct pci_dev *validate) | ||
303 | { | ||
304 | struct pci_controller *hose = phb->hose; | ||
305 | unsigned long size = phb->dma32_region_size; | ||
306 | unsigned long addr = phb->dma32_region_size * region + phb->dma32_base; | ||
307 | struct wsp_dma_table *tbl; | ||
308 | int tvts_per_table, i, tvt, nid; | ||
309 | unsigned long flags; | ||
310 | |||
311 | nid = of_node_to_nid(phb->hose->dn); | ||
312 | |||
313 | /* Calculate how many TVTs are needed */ | ||
314 | tvts_per_table = size / 0x10000000; | ||
315 | if (tvts_per_table == 0) | ||
316 | tvts_per_table = 1; | ||
317 | |||
318 | /* Calculate the base TVT index. We know all tables have the same | ||
319 | * size so we just do a simple multiply here | ||
320 | */ | ||
321 | tvt = region * tvts_per_table; | ||
322 | |||
323 | pr_debug(" Region : %d\n", region); | ||
324 | pr_debug(" DMA range : 0x%08lx..0x%08lx\n", addr, addr + size - 1); | ||
325 | pr_debug(" Number of TVTs : %d\n", tvts_per_table); | ||
326 | pr_debug(" Base TVT : %d\n", tvt); | ||
327 | pr_debug(" Node : %d\n", nid); | ||
328 | |||
329 | tbl = kzalloc_node(sizeof(struct wsp_dma_table), GFP_KERNEL, nid); | ||
330 | if (!tbl) | ||
331 | return ERR_PTR(-ENOMEM); | ||
332 | tbl->phb = phb; | ||
333 | |||
334 | /* Create as many TVTs as needed, each represents 256M at most */ | ||
335 | for (i = 0; i < tvts_per_table; i++) { | ||
336 | u64 tvt_data1, tvt_data0; | ||
337 | |||
338 | /* Allocate table. We use a 4K TCE size for now always so | ||
339 | * one table is always 8 * (258M / 4K) == 512K | ||
340 | */ | ||
341 | tbl->tces[i] = alloc_pages_node(nid, GFP_KERNEL, get_order(0x80000)); | ||
342 | if (tbl->tces[i] == NULL) | ||
343 | goto fail; | ||
344 | memset(page_address(tbl->tces[i]), 0, 0x80000); | ||
345 | |||
346 | pr_debug(" TCE table %d at : %p\n", i, page_address(tbl->tces[i])); | ||
347 | |||
348 | /* Table size. We currently set it to be the whole 256M region */ | ||
349 | tvt_data0 = 2ull << IODA_TVT0_TCE_TABLE_SIZE_SHIFT; | ||
350 | /* IO page size set to 4K */ | ||
351 | tvt_data1 = 1ull << IODA_TVT1_IO_PAGE_SIZE_SHIFT; | ||
352 | /* Shift in the address */ | ||
353 | tvt_data0 |= __pa(page_address(tbl->tces[i])) << IODA_TVT0_TTA_SHIFT; | ||
354 | |||
355 | /* Validation stuff. We only validate fully bus/dev/fn for now | ||
356 | * one day maybe we can group devices but that isn't the case | ||
357 | * at the moment | ||
358 | */ | ||
359 | if (validate) { | ||
360 | tvt_data0 |= IODA_TVT0_BUSNUM_VALID_MASK; | ||
361 | tvt_data0 |= validate->bus->number; | ||
362 | tvt_data1 |= IODA_TVT1_DEVNUM_VALID; | ||
363 | tvt_data1 |= ((u64)PCI_SLOT(validate->devfn)) | ||
364 | << IODA_TVT1_DEVNUM_VALUE_SHIFT; | ||
365 | tvt_data1 |= IODA_TVT1_FUNCNUM_VALID; | ||
366 | tvt_data1 |= ((u64)PCI_FUNC(validate->devfn)) | ||
367 | << IODA_TVT1_FUNCNUM_VALUE_SHIFT; | ||
368 | } | ||
369 | |||
370 | /* XX PE number is always 0 for now */ | ||
371 | |||
372 | /* Program the values using the PHB lock */ | ||
373 | spin_lock_irqsave(&phb->lock, flags); | ||
374 | out_be64(hose->cfg_data + PCIE_REG_IODA_ADDR, | ||
375 | (tvt + i) | PCIE_REG_IODA_AD_TBL_TVT); | ||
376 | out_be64(hose->cfg_data + PCIE_REG_IODA_DATA1, tvt_data1); | ||
377 | out_be64(hose->cfg_data + PCIE_REG_IODA_DATA0, tvt_data0); | ||
378 | spin_unlock_irqrestore(&phb->lock, flags); | ||
379 | } | ||
380 | |||
381 | /* Init bits and pieces */ | ||
382 | tbl->table.it_blocksize = 16; | ||
383 | tbl->table.it_offset = addr >> IOMMU_PAGE_SHIFT; | ||
384 | tbl->table.it_size = size >> IOMMU_PAGE_SHIFT; | ||
385 | |||
386 | /* | ||
387 | * It's already blank but we clear it anyway. | ||
388 | * Consider an aditiona interface that makes cleaing optional | ||
389 | */ | ||
390 | iommu_init_table(&tbl->table, nid); | ||
391 | |||
392 | list_add(&tbl->link, &phb->dma_tables); | ||
393 | return tbl; | ||
394 | |||
395 | fail: | ||
396 | pr_debug(" Failed to allocate a 256M TCE table !\n"); | ||
397 | for (i = 0; i < tvts_per_table; i++) | ||
398 | if (tbl->tces[i]) | ||
399 | __free_pages(tbl->tces[i], get_order(0x80000)); | ||
400 | kfree(tbl); | ||
401 | return ERR_PTR(-ENOMEM); | ||
402 | } | ||
403 | |||
404 | static void __devinit wsp_pci_dma_dev_setup(struct pci_dev *pdev) | ||
405 | { | ||
406 | struct dev_archdata *archdata = &pdev->dev.archdata; | ||
407 | struct pci_controller *hose = pci_bus_to_host(pdev->bus); | ||
408 | struct wsp_phb *phb = hose->private_data; | ||
409 | struct wsp_dma_table *table = NULL; | ||
410 | unsigned long flags; | ||
411 | int i; | ||
412 | |||
413 | /* Don't assign an iommu table to a bridge */ | ||
414 | if (pdev->hdr_type == PCI_HEADER_TYPE_BRIDGE) | ||
415 | return; | ||
416 | |||
417 | pr_debug("%s: Setting up DMA...\n", pci_name(pdev)); | ||
418 | |||
419 | spin_lock_irqsave(&phb->lock, flags); | ||
420 | |||
421 | /* If only one region, check if it already exist */ | ||
422 | if (phb->dma32_num_regions == 1) { | ||
423 | spin_unlock_irqrestore(&phb->lock, flags); | ||
424 | if (list_empty(&phb->dma_tables)) | ||
425 | table = wsp_pci_create_dma32_table(phb, 0, NULL); | ||
426 | else | ||
427 | table = list_first_entry(&phb->dma_tables, | ||
428 | struct wsp_dma_table, | ||
429 | link); | ||
430 | } else { | ||
431 | /* else find a free region */ | ||
432 | for (i = 0; i < phb->dma32_num_regions && !table; i++) { | ||
433 | if (__test_and_set_bit(i, &phb->dma32_map)) | ||
434 | continue; | ||
435 | spin_unlock_irqrestore(&phb->lock, flags); | ||
436 | table = wsp_pci_create_dma32_table(phb, i, pdev); | ||
437 | } | ||
438 | } | ||
439 | |||
440 | /* Check if we got an error */ | ||
441 | if (IS_ERR(table)) { | ||
442 | pr_err("%s: Failed to create DMA table, err %ld !\n", | ||
443 | pci_name(pdev), PTR_ERR(table)); | ||
444 | return; | ||
445 | } | ||
446 | |||
447 | /* Or a valid table */ | ||
448 | if (table) { | ||
449 | pr_info("%s: Setup iommu: 32-bit DMA region 0x%08lx..0x%08lx\n", | ||
450 | pci_name(pdev), | ||
451 | table->table.it_offset << IOMMU_PAGE_SHIFT, | ||
452 | (table->table.it_offset << IOMMU_PAGE_SHIFT) | ||
453 | + phb->dma32_region_size - 1); | ||
454 | archdata->dma_data.iommu_table_base = &table->table; | ||
455 | return; | ||
456 | } | ||
457 | |||
458 | /* Or no room */ | ||
459 | spin_unlock_irqrestore(&phb->lock, flags); | ||
460 | pr_err("%s: Out of DMA space !\n", pci_name(pdev)); | ||
461 | } | ||
462 | |||
463 | static void __init wsp_pcie_configure_hw(struct pci_controller *hose) | ||
464 | { | ||
465 | u64 val; | ||
466 | int i; | ||
467 | |||
468 | #define DUMP_REG(x) \ | ||
469 | pr_debug("%-30s : 0x%016llx\n", #x, in_be64(hose->cfg_data + x)) | ||
470 | |||
471 | #ifdef CONFIG_WSP_DD1_WORKAROUND_BAD_PCIE_CLASS | ||
472 | /* WSP DD1 has a bogus class code by default in the PCI-E | ||
473 | * root complex's built-in P2P bridge */ | ||
474 | val = in_be64(hose->cfg_data + PCIE_REG_SYS_CFG1); | ||
475 | pr_debug("PCI-E SYS_CFG1 : 0x%llx\n", val); | ||
476 | out_be64(hose->cfg_data + PCIE_REG_SYS_CFG1, | ||
477 | (val & ~PCIE_REG_SYS_CFG1_CLASS_CODE) | (PCI_CLASS_BRIDGE_PCI << 8)); | ||
478 | pr_debug("PCI-E SYS_CFG1 : 0x%llx\n", in_be64(hose->cfg_data + PCIE_REG_SYS_CFG1)); | ||
479 | #endif /* CONFIG_WSP_DD1_WORKAROUND_BAD_PCIE_CLASS */ | ||
480 | |||
481 | #ifdef CONFIG_WSP_DD1_WORKAROUND_DD1_TCE_BUGS | ||
482 | /* XXX Disable TCE caching, it doesn't work on DD1 */ | ||
483 | out_be64(hose->cfg_data + 0xe50, | ||
484 | in_be64(hose->cfg_data + 0xe50) | (3ull << 62)); | ||
485 | printk("PCI-E DEBUG CONTROL 5 = 0x%llx\n", in_be64(hose->cfg_data + 0xe50)); | ||
486 | #endif | ||
487 | |||
488 | /* Configure M32A and IO. IO is hard wired to be 1M for now */ | ||
489 | out_be64(hose->cfg_data + PCIE_REG_IO_BASE_ADDR, hose->io_base_phys); | ||
490 | out_be64(hose->cfg_data + PCIE_REG_IO_BASE_MASK, | ||
491 | (~(hose->io_resource.end - hose->io_resource.start)) & | ||
492 | 0x3fffffff000ul); | ||
493 | out_be64(hose->cfg_data + PCIE_REG_IO_START_ADDR, 0 | 1); | ||
494 | |||
495 | out_be64(hose->cfg_data + PCIE_REG_M32A_BASE_ADDR, | ||
496 | hose->mem_resources[0].start); | ||
497 | printk("Want to write to M32A_BASE_MASK : 0x%llx\n", | ||
498 | (~(hose->mem_resources[0].end - | ||
499 | hose->mem_resources[0].start)) & 0x3ffffff0000ul); | ||
500 | out_be64(hose->cfg_data + PCIE_REG_M32A_BASE_MASK, | ||
501 | (~(hose->mem_resources[0].end - | ||
502 | hose->mem_resources[0].start)) & 0x3ffffff0000ul); | ||
503 | out_be64(hose->cfg_data + PCIE_REG_M32A_START_ADDR, | ||
504 | (hose->mem_resources[0].start - hose->pci_mem_offset) | 1); | ||
505 | |||
506 | /* Clear all TVT entries | ||
507 | * | ||
508 | * XX Might get TVT count from device-tree | ||
509 | */ | ||
510 | for (i = 0; i < IODA_TVT_COUNT; i++) { | ||
511 | out_be64(hose->cfg_data + PCIE_REG_IODA_ADDR, | ||
512 | PCIE_REG_IODA_AD_TBL_TVT | i); | ||
513 | out_be64(hose->cfg_data + PCIE_REG_IODA_DATA1, 0); | ||
514 | out_be64(hose->cfg_data + PCIE_REG_IODA_DATA0, 0); | ||
515 | } | ||
516 | |||
517 | /* Kill the TCE cache */ | ||
518 | out_be64(hose->cfg_data + PCIE_REG_PHB_CONFIG, | ||
519 | in_be64(hose->cfg_data + PCIE_REG_PHB_CONFIG) | | ||
520 | PCIE_REG_PHBC_64B_TCE_EN); | ||
521 | |||
522 | /* Enable 32 & 64-bit MSIs, IO space and M32A */ | ||
523 | val = PCIE_REG_PHBC_32BIT_MSI_EN | | ||
524 | PCIE_REG_PHBC_IO_EN | | ||
525 | PCIE_REG_PHBC_64BIT_MSI_EN | | ||
526 | PCIE_REG_PHBC_M32A_EN; | ||
527 | if (iommu_is_off) | ||
528 | val |= PCIE_REG_PHBC_DMA_XLATE_BYPASS; | ||
529 | pr_debug("Will write config: 0x%llx\n", val); | ||
530 | out_be64(hose->cfg_data + PCIE_REG_PHB_CONFIG, val); | ||
531 | |||
532 | /* Enable error reporting */ | ||
533 | out_be64(hose->cfg_data + 0xe00, | ||
534 | in_be64(hose->cfg_data + 0xe00) | 0x0008000000000000ull); | ||
535 | |||
536 | /* Mask an error that's generated when doing config space probe | ||
537 | * | ||
538 | * XXX Maybe we should only mask it around config space cycles... that or | ||
539 | * ignore it when we know we had a config space cycle recently ? | ||
540 | */ | ||
541 | out_be64(hose->cfg_data + PCIE_REG_DMA_ERR_STATUS_MASK, 0x8000000000000000ull); | ||
542 | out_be64(hose->cfg_data + PCIE_REG_DMA_ERR1_STATUS_MASK, 0x8000000000000000ull); | ||
543 | |||
544 | /* Enable UTL errors, for now, all of them got to UTL irq 1 | ||
545 | * | ||
546 | * We similarily mask one UTL error caused apparently during normal | ||
547 | * probing. We also mask the link up error | ||
548 | */ | ||
549 | out_be64(hose->cfg_data + PCIE_UTL_SYS_BUS_AGENT_ERR_SEV, 0); | ||
550 | out_be64(hose->cfg_data + PCIE_UTL_RC_ERR_SEVERITY, 0); | ||
551 | out_be64(hose->cfg_data + PCIE_UTL_PCIE_PORT_ERROR_SEV, 0); | ||
552 | out_be64(hose->cfg_data + PCIE_UTL_SYS_BUS_AGENT_IRQ_EN, 0xffffffff00000000ull); | ||
553 | out_be64(hose->cfg_data + PCIE_UTL_PCIE_PORT_IRQ_EN, 0xff5fffff00000000ull); | ||
554 | out_be64(hose->cfg_data + PCIE_UTL_EP_ERR_IRQ_EN, 0xffffffff00000000ull); | ||
555 | |||
556 | DUMP_REG(PCIE_REG_IO_BASE_ADDR); | ||
557 | DUMP_REG(PCIE_REG_IO_BASE_MASK); | ||
558 | DUMP_REG(PCIE_REG_IO_START_ADDR); | ||
559 | DUMP_REG(PCIE_REG_M32A_BASE_ADDR); | ||
560 | DUMP_REG(PCIE_REG_M32A_BASE_MASK); | ||
561 | DUMP_REG(PCIE_REG_M32A_START_ADDR); | ||
562 | DUMP_REG(PCIE_REG_M32B_BASE_ADDR); | ||
563 | DUMP_REG(PCIE_REG_M32B_BASE_MASK); | ||
564 | DUMP_REG(PCIE_REG_M32B_START_ADDR); | ||
565 | DUMP_REG(PCIE_REG_M64_BASE_ADDR); | ||
566 | DUMP_REG(PCIE_REG_M64_BASE_MASK); | ||
567 | DUMP_REG(PCIE_REG_M64_START_ADDR); | ||
568 | DUMP_REG(PCIE_REG_PHB_CONFIG); | ||
569 | } | ||
570 | |||
571 | static void wsp_pci_wait_io_idle(struct wsp_phb *phb, unsigned long port) | ||
572 | { | ||
573 | u64 val; | ||
574 | int i; | ||
575 | |||
576 | for (i = 0; i < 10000; i++) { | ||
577 | val = in_be64(phb->hose->cfg_data + 0xe08); | ||
578 | if ((val & 0x1900000000000000ull) == 0x0100000000000000ull) | ||
579 | return; | ||
580 | udelay(1); | ||
581 | } | ||
582 | pr_warning("PCI IO timeout on domain %d port 0x%lx\n", | ||
583 | phb->hose->global_number, port); | ||
584 | } | ||
585 | |||
586 | #define DEF_PCI_AC_RET_pio(name, ret, at, al, aa) \ | ||
587 | static ret wsp_pci_##name at \ | ||
588 | { \ | ||
589 | struct iowa_bus *bus; \ | ||
590 | struct wsp_phb *phb; \ | ||
591 | unsigned long flags; \ | ||
592 | ret rval; \ | ||
593 | bus = iowa_pio_find_bus(aa); \ | ||
594 | WARN_ON(!bus); \ | ||
595 | phb = bus->private; \ | ||
596 | spin_lock_irqsave(&phb->lock, flags); \ | ||
597 | wsp_pci_wait_io_idle(phb, aa); \ | ||
598 | rval = __do_##name al; \ | ||
599 | spin_unlock_irqrestore(&phb->lock, flags); \ | ||
600 | return rval; \ | ||
601 | } | ||
602 | |||
603 | #define DEF_PCI_AC_NORET_pio(name, at, al, aa) \ | ||
604 | static void wsp_pci_##name at \ | ||
605 | { \ | ||
606 | struct iowa_bus *bus; \ | ||
607 | struct wsp_phb *phb; \ | ||
608 | unsigned long flags; \ | ||
609 | bus = iowa_pio_find_bus(aa); \ | ||
610 | WARN_ON(!bus); \ | ||
611 | phb = bus->private; \ | ||
612 | spin_lock_irqsave(&phb->lock, flags); \ | ||
613 | wsp_pci_wait_io_idle(phb, aa); \ | ||
614 | __do_##name al; \ | ||
615 | spin_unlock_irqrestore(&phb->lock, flags); \ | ||
616 | } | ||
617 | |||
618 | #define DEF_PCI_AC_RET_mem(name, ret, at, al, aa) | ||
619 | #define DEF_PCI_AC_NORET_mem(name, at, al, aa) | ||
620 | |||
621 | #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) \ | ||
622 | DEF_PCI_AC_RET_##space(name, ret, at, al, aa) | ||
623 | |||
624 | #define DEF_PCI_AC_NORET(name, at, al, space, aa) \ | ||
625 | DEF_PCI_AC_NORET_##space(name, at, al, aa) \ | ||
626 | |||
627 | |||
628 | #include <asm/io-defs.h> | ||
629 | |||
630 | #undef DEF_PCI_AC_RET | ||
631 | #undef DEF_PCI_AC_NORET | ||
632 | |||
633 | static struct ppc_pci_io wsp_pci_iops = { | ||
634 | .inb = wsp_pci_inb, | ||
635 | .inw = wsp_pci_inw, | ||
636 | .inl = wsp_pci_inl, | ||
637 | .outb = wsp_pci_outb, | ||
638 | .outw = wsp_pci_outw, | ||
639 | .outl = wsp_pci_outl, | ||
640 | .insb = wsp_pci_insb, | ||
641 | .insw = wsp_pci_insw, | ||
642 | .insl = wsp_pci_insl, | ||
643 | .outsb = wsp_pci_outsb, | ||
644 | .outsw = wsp_pci_outsw, | ||
645 | .outsl = wsp_pci_outsl, | ||
646 | }; | ||
647 | |||
648 | static int __init wsp_setup_one_phb(struct device_node *np) | ||
649 | { | ||
650 | struct pci_controller *hose; | ||
651 | struct wsp_phb *phb; | ||
652 | |||
653 | pr_info("PCI: Setting up PCIe host bridge 0x%s\n", np->full_name); | ||
654 | |||
655 | phb = zalloc_maybe_bootmem(sizeof(struct wsp_phb), GFP_KERNEL); | ||
656 | if (!phb) | ||
657 | return -ENOMEM; | ||
658 | hose = pcibios_alloc_controller(np); | ||
659 | if (!hose) { | ||
660 | /* Can't really free the phb */ | ||
661 | return -ENOMEM; | ||
662 | } | ||
663 | hose->private_data = phb; | ||
664 | phb->hose = hose; | ||
665 | |||
666 | INIT_LIST_HEAD(&phb->dma_tables); | ||
667 | spin_lock_init(&phb->lock); | ||
668 | |||
669 | /* XXX Use bus-range property ? */ | ||
670 | hose->first_busno = 0; | ||
671 | hose->last_busno = 0xff; | ||
672 | |||
673 | /* We use cfg_data as the address for the whole bridge MMIO space | ||
674 | */ | ||
675 | hose->cfg_data = of_iomap(hose->dn, 0); | ||
676 | |||
677 | pr_debug("PCIe registers mapped at 0x%p\n", hose->cfg_data); | ||
678 | |||
679 | /* Get the ranges of the device-tree */ | ||
680 | pci_process_bridge_OF_ranges(hose, np, 0); | ||
681 | |||
682 | /* XXX Force re-assigning of everything for now */ | ||
683 | pci_add_flags(PCI_REASSIGN_ALL_BUS | PCI_REASSIGN_ALL_RSRC | | ||
684 | PCI_ENABLE_PROC_DOMAINS); | ||
685 | pci_probe_only = 0; | ||
686 | |||
687 | /* Calculate how the TCE space is divided */ | ||
688 | phb->dma32_base = 0; | ||
689 | phb->dma32_num_regions = NUM_DMA32_REGIONS; | ||
690 | if (phb->dma32_num_regions > MAX_TABLE_TVT_COUNT) { | ||
691 | pr_warning("IOMMU: Clamped to %d DMA32 regions\n", | ||
692 | MAX_TABLE_TVT_COUNT); | ||
693 | phb->dma32_num_regions = MAX_TABLE_TVT_COUNT; | ||
694 | } | ||
695 | phb->dma32_region_size = 0x80000000 / phb->dma32_num_regions; | ||
696 | |||
697 | BUG_ON(!is_power_of_2(phb->dma32_region_size)); | ||
698 | |||
699 | /* Setup config ops */ | ||
700 | hose->ops = &wsp_pcie_pci_ops; | ||
701 | |||
702 | /* Configure the HW */ | ||
703 | wsp_pcie_configure_hw(hose); | ||
704 | |||
705 | /* Instanciate IO workarounds */ | ||
706 | iowa_register_bus(hose, &wsp_pci_iops, NULL, phb); | ||
707 | #ifdef CONFIG_PCI_MSI | ||
708 | wsp_setup_phb_msi(hose); | ||
709 | #endif | ||
710 | |||
711 | /* Add to global list */ | ||
712 | list_add(&phb->all, &wsp_phbs); | ||
713 | |||
714 | return 0; | ||
715 | } | ||
716 | |||
717 | void __init wsp_setup_pci(void) | ||
718 | { | ||
719 | struct device_node *np; | ||
720 | int rc; | ||
721 | |||
722 | /* Find host bridges */ | ||
723 | for_each_compatible_node(np, "pciex", PCIE_COMPATIBLE) { | ||
724 | rc = wsp_setup_one_phb(np); | ||
725 | if (rc) | ||
726 | pr_err("Failed to setup PCIe bridge %s, rc=%d\n", | ||
727 | np->full_name, rc); | ||
728 | } | ||
729 | |||
730 | /* Establish device-tree linkage */ | ||
731 | pci_devs_phb_init(); | ||
732 | |||
733 | /* Set DMA ops to use TCEs */ | ||
734 | if (iommu_is_off) { | ||
735 | pr_info("PCI-E: Disabled TCEs, using direct DMA\n"); | ||
736 | set_pci_dma_ops(&dma_direct_ops); | ||
737 | } else { | ||
738 | ppc_md.pci_dma_dev_setup = wsp_pci_dma_dev_setup; | ||
739 | ppc_md.tce_build = tce_build_wsp; | ||
740 | ppc_md.tce_free = tce_free_wsp; | ||
741 | set_pci_dma_ops(&dma_iommu_ops); | ||
742 | } | ||
743 | } | ||
744 | |||
745 | #define err_debug(fmt...) pr_debug(fmt) | ||
746 | //#define err_debug(fmt...) | ||
747 | |||
748 | static int __init wsp_pci_get_err_irq_no_dt(struct device_node *np) | ||
749 | { | ||
750 | const u32 *prop; | ||
751 | int hw_irq; | ||
752 | |||
753 | /* Ok, no interrupts property, let's try to find our child P2P */ | ||
754 | np = of_get_next_child(np, NULL); | ||
755 | if (np == NULL) | ||
756 | return 0; | ||
757 | |||
758 | /* Grab it's interrupt map */ | ||
759 | prop = of_get_property(np, "interrupt-map", NULL); | ||
760 | if (prop == NULL) | ||
761 | return 0; | ||
762 | |||
763 | /* Grab one of the interrupts in there, keep the low 4 bits */ | ||
764 | hw_irq = prop[5] & 0xf; | ||
765 | |||
766 | /* 0..4 for PHB 0 and 5..9 for PHB 1 */ | ||
767 | if (hw_irq < 5) | ||
768 | hw_irq = 4; | ||
769 | else | ||
770 | hw_irq = 9; | ||
771 | hw_irq |= prop[5] & ~0xf; | ||
772 | |||
773 | err_debug("PCI: Using 0x%x as error IRQ for %s\n", | ||
774 | hw_irq, np->parent->full_name); | ||
775 | return irq_create_mapping(NULL, hw_irq); | ||
776 | } | ||
777 | |||
778 | static const struct { | ||
779 | u32 offset; | ||
780 | const char *name; | ||
781 | } wsp_pci_regs[] = { | ||
782 | #define DREG(x) { PCIE_REG_##x, #x } | ||
783 | #define DUTL(x) { PCIE_UTL_##x, "UTL_" #x } | ||
784 | /* Architected registers except CONFIG_ and IODA | ||
785 | * to avoid side effects | ||
786 | */ | ||
787 | DREG(DMA_CHAN_STATUS), | ||
788 | DREG(CPU_LOADSTORE_STATUS), | ||
789 | DREG(LOCK0), | ||
790 | DREG(LOCK1), | ||
791 | DREG(PHB_CONFIG), | ||
792 | DREG(IO_BASE_ADDR), | ||
793 | DREG(IO_BASE_MASK), | ||
794 | DREG(IO_START_ADDR), | ||
795 | DREG(M32A_BASE_ADDR), | ||
796 | DREG(M32A_BASE_MASK), | ||
797 | DREG(M32A_START_ADDR), | ||
798 | DREG(M32B_BASE_ADDR), | ||
799 | DREG(M32B_BASE_MASK), | ||
800 | DREG(M32B_START_ADDR), | ||
801 | DREG(M64_BASE_ADDR), | ||
802 | DREG(M64_BASE_MASK), | ||
803 | DREG(M64_START_ADDR), | ||
804 | DREG(TCE_KILL), | ||
805 | DREG(LOCK2), | ||
806 | DREG(PHB_GEN_CAP), | ||
807 | DREG(PHB_TCE_CAP), | ||
808 | DREG(PHB_IRQ_CAP), | ||
809 | DREG(PHB_EEH_CAP), | ||
810 | DREG(PAPR_ERR_INJ_CONTROL), | ||
811 | DREG(PAPR_ERR_INJ_ADDR), | ||
812 | DREG(PAPR_ERR_INJ_MASK), | ||
813 | |||
814 | /* UTL core regs */ | ||
815 | DUTL(SYS_BUS_CONTROL), | ||
816 | DUTL(STATUS), | ||
817 | DUTL(SYS_BUS_AGENT_STATUS), | ||
818 | DUTL(SYS_BUS_AGENT_ERR_SEV), | ||
819 | DUTL(SYS_BUS_AGENT_IRQ_EN), | ||
820 | DUTL(SYS_BUS_BURST_SZ_CONF), | ||
821 | DUTL(REVISION_ID), | ||
822 | DUTL(OUT_POST_HDR_BUF_ALLOC), | ||
823 | DUTL(OUT_POST_DAT_BUF_ALLOC), | ||
824 | DUTL(IN_POST_HDR_BUF_ALLOC), | ||
825 | DUTL(IN_POST_DAT_BUF_ALLOC), | ||
826 | DUTL(OUT_NP_BUF_ALLOC), | ||
827 | DUTL(IN_NP_BUF_ALLOC), | ||
828 | DUTL(PCIE_TAGS_ALLOC), | ||
829 | DUTL(GBIF_READ_TAGS_ALLOC), | ||
830 | |||
831 | DUTL(PCIE_PORT_CONTROL), | ||
832 | DUTL(PCIE_PORT_STATUS), | ||
833 | DUTL(PCIE_PORT_ERROR_SEV), | ||
834 | DUTL(PCIE_PORT_IRQ_EN), | ||
835 | DUTL(RC_STATUS), | ||
836 | DUTL(RC_ERR_SEVERITY), | ||
837 | DUTL(RC_IRQ_EN), | ||
838 | DUTL(EP_STATUS), | ||
839 | DUTL(EP_ERR_SEVERITY), | ||
840 | DUTL(EP_ERR_IRQ_EN), | ||
841 | DUTL(PCI_PM_CTRL1), | ||
842 | DUTL(PCI_PM_CTRL2), | ||
843 | |||
844 | /* PCIe stack regs */ | ||
845 | DREG(SYSTEM_CONFIG1), | ||
846 | DREG(SYSTEM_CONFIG2), | ||
847 | DREG(EP_SYSTEM_CONFIG), | ||
848 | DREG(EP_FLR), | ||
849 | DREG(EP_BAR_CONFIG), | ||
850 | DREG(LINK_CONFIG), | ||
851 | DREG(PM_CONFIG), | ||
852 | DREG(DLP_CONTROL), | ||
853 | DREG(DLP_STATUS), | ||
854 | DREG(ERR_REPORT_CONTROL), | ||
855 | DREG(SLOT_CONTROL1), | ||
856 | DREG(SLOT_CONTROL2), | ||
857 | DREG(UTL_CONFIG), | ||
858 | DREG(BUFFERS_CONFIG), | ||
859 | DREG(ERROR_INJECT), | ||
860 | DREG(SRIOV_CONFIG), | ||
861 | DREG(PF0_SRIOV_STATUS), | ||
862 | DREG(PF1_SRIOV_STATUS), | ||
863 | DREG(PORT_NUMBER), | ||
864 | DREG(POR_SYSTEM_CONFIG), | ||
865 | |||
866 | /* Internal logic regs */ | ||
867 | DREG(PHB_VERSION), | ||
868 | DREG(RESET), | ||
869 | DREG(PHB_CONTROL), | ||
870 | DREG(PHB_TIMEOUT_CONTROL1), | ||
871 | DREG(PHB_QUIESCE_DMA), | ||
872 | DREG(PHB_DMA_READ_TAG_ACTV), | ||
873 | DREG(PHB_TCE_READ_TAG_ACTV), | ||
874 | |||
875 | /* FIR registers */ | ||
876 | DREG(LEM_FIR_ACCUM), | ||
877 | DREG(LEM_FIR_AND_MASK), | ||
878 | DREG(LEM_FIR_OR_MASK), | ||
879 | DREG(LEM_ACTION0), | ||
880 | DREG(LEM_ACTION1), | ||
881 | DREG(LEM_ERROR_MASK), | ||
882 | DREG(LEM_ERROR_AND_MASK), | ||
883 | DREG(LEM_ERROR_OR_MASK), | ||
884 | |||
885 | /* Error traps registers */ | ||
886 | DREG(PHB_ERR_STATUS), | ||
887 | DREG(PHB_ERR_STATUS), | ||
888 | DREG(PHB_ERR1_STATUS), | ||
889 | DREG(PHB_ERR_INJECT), | ||
890 | DREG(PHB_ERR_LEM_ENABLE), | ||
891 | DREG(PHB_ERR_IRQ_ENABLE), | ||
892 | DREG(PHB_ERR_FREEZE_ENABLE), | ||
893 | DREG(PHB_ERR_SIDE_ENABLE), | ||
894 | DREG(PHB_ERR_LOG_0), | ||
895 | DREG(PHB_ERR_LOG_1), | ||
896 | DREG(PHB_ERR_STATUS_MASK), | ||
897 | DREG(PHB_ERR1_STATUS_MASK), | ||
898 | DREG(MMIO_ERR_STATUS), | ||
899 | DREG(MMIO_ERR1_STATUS), | ||
900 | DREG(MMIO_ERR_INJECT), | ||
901 | DREG(MMIO_ERR_LEM_ENABLE), | ||
902 | DREG(MMIO_ERR_IRQ_ENABLE), | ||
903 | DREG(MMIO_ERR_FREEZE_ENABLE), | ||
904 | DREG(MMIO_ERR_SIDE_ENABLE), | ||
905 | DREG(MMIO_ERR_LOG_0), | ||
906 | DREG(MMIO_ERR_LOG_1), | ||
907 | DREG(MMIO_ERR_STATUS_MASK), | ||
908 | DREG(MMIO_ERR1_STATUS_MASK), | ||
909 | DREG(DMA_ERR_STATUS), | ||
910 | DREG(DMA_ERR1_STATUS), | ||
911 | DREG(DMA_ERR_INJECT), | ||
912 | DREG(DMA_ERR_LEM_ENABLE), | ||
913 | DREG(DMA_ERR_IRQ_ENABLE), | ||
914 | DREG(DMA_ERR_FREEZE_ENABLE), | ||
915 | DREG(DMA_ERR_SIDE_ENABLE), | ||
916 | DREG(DMA_ERR_LOG_0), | ||
917 | DREG(DMA_ERR_LOG_1), | ||
918 | DREG(DMA_ERR_STATUS_MASK), | ||
919 | DREG(DMA_ERR1_STATUS_MASK), | ||
920 | |||
921 | /* Debug and Trace registers */ | ||
922 | DREG(PHB_DEBUG_CONTROL0), | ||
923 | DREG(PHB_DEBUG_STATUS0), | ||
924 | DREG(PHB_DEBUG_CONTROL1), | ||
925 | DREG(PHB_DEBUG_STATUS1), | ||
926 | DREG(PHB_DEBUG_CONTROL2), | ||
927 | DREG(PHB_DEBUG_STATUS2), | ||
928 | DREG(PHB_DEBUG_CONTROL3), | ||
929 | DREG(PHB_DEBUG_STATUS3), | ||
930 | DREG(PHB_DEBUG_CONTROL4), | ||
931 | DREG(PHB_DEBUG_STATUS4), | ||
932 | DREG(PHB_DEBUG_CONTROL5), | ||
933 | DREG(PHB_DEBUG_STATUS5), | ||
934 | |||
935 | /* Don't seem to exist ... | ||
936 | DREG(PHB_DEBUG_CONTROL6), | ||
937 | DREG(PHB_DEBUG_STATUS6), | ||
938 | */ | ||
939 | }; | ||
940 | |||
941 | static int wsp_pci_regs_show(struct seq_file *m, void *private) | ||
942 | { | ||
943 | struct wsp_phb *phb = m->private; | ||
944 | struct pci_controller *hose = phb->hose; | ||
945 | int i; | ||
946 | |||
947 | for (i = 0; i < ARRAY_SIZE(wsp_pci_regs); i++) { | ||
948 | /* Skip write-only regs */ | ||
949 | if (wsp_pci_regs[i].offset == 0xc08 || | ||
950 | wsp_pci_regs[i].offset == 0xc10 || | ||
951 | wsp_pci_regs[i].offset == 0xc38 || | ||
952 | wsp_pci_regs[i].offset == 0xc40) | ||
953 | continue; | ||
954 | seq_printf(m, "0x%03x: 0x%016llx %s\n", | ||
955 | wsp_pci_regs[i].offset, | ||
956 | in_be64(hose->cfg_data + wsp_pci_regs[i].offset), | ||
957 | wsp_pci_regs[i].name); | ||
958 | } | ||
959 | return 0; | ||
960 | } | ||
961 | |||
962 | static int wsp_pci_regs_open(struct inode *inode, struct file *file) | ||
963 | { | ||
964 | return single_open(file, wsp_pci_regs_show, inode->i_private); | ||
965 | } | ||
966 | |||
967 | static const struct file_operations wsp_pci_regs_fops = { | ||
968 | .open = wsp_pci_regs_open, | ||
969 | .read = seq_read, | ||
970 | .llseek = seq_lseek, | ||
971 | .release = single_release, | ||
972 | }; | ||
973 | |||
974 | static int wsp_pci_reg_set(void *data, u64 val) | ||
975 | { | ||
976 | out_be64((void __iomem *)data, val); | ||
977 | return 0; | ||
978 | } | ||
979 | |||
980 | static int wsp_pci_reg_get(void *data, u64 *val) | ||
981 | { | ||
982 | *val = in_be64((void __iomem *)data); | ||
983 | return 0; | ||
984 | } | ||
985 | |||
986 | DEFINE_SIMPLE_ATTRIBUTE(wsp_pci_reg_fops, wsp_pci_reg_get, wsp_pci_reg_set, "0x%llx\n"); | ||
987 | |||
988 | static irqreturn_t wsp_pci_err_irq(int irq, void *dev_id) | ||
989 | { | ||
990 | struct wsp_phb *phb = dev_id; | ||
991 | struct pci_controller *hose = phb->hose; | ||
992 | irqreturn_t handled = IRQ_NONE; | ||
993 | struct wsp_pcie_err_log_data ed; | ||
994 | |||
995 | pr_err("PCI: Error interrupt on %s (PHB %d)\n", | ||
996 | hose->dn->full_name, hose->global_number); | ||
997 | again: | ||
998 | memset(&ed, 0, sizeof(ed)); | ||
999 | |||
1000 | /* Read and clear UTL errors */ | ||
1001 | ed.utl_sys_err = in_be64(hose->cfg_data + PCIE_UTL_SYS_BUS_AGENT_STATUS); | ||
1002 | if (ed.utl_sys_err) | ||
1003 | out_be64(hose->cfg_data + PCIE_UTL_SYS_BUS_AGENT_STATUS, ed.utl_sys_err); | ||
1004 | ed.utl_port_err = in_be64(hose->cfg_data + PCIE_UTL_PCIE_PORT_STATUS); | ||
1005 | if (ed.utl_port_err) | ||
1006 | out_be64(hose->cfg_data + PCIE_UTL_PCIE_PORT_STATUS, ed.utl_port_err); | ||
1007 | ed.utl_rc_err = in_be64(hose->cfg_data + PCIE_UTL_RC_STATUS); | ||
1008 | if (ed.utl_rc_err) | ||
1009 | out_be64(hose->cfg_data + PCIE_UTL_RC_STATUS, ed.utl_rc_err); | ||
1010 | |||
1011 | /* Read and clear main trap errors */ | ||
1012 | ed.phb_err = in_be64(hose->cfg_data + PCIE_REG_PHB_ERR_STATUS); | ||
1013 | if (ed.phb_err) { | ||
1014 | ed.phb_err1 = in_be64(hose->cfg_data + PCIE_REG_PHB_ERR1_STATUS); | ||
1015 | ed.phb_log0 = in_be64(hose->cfg_data + PCIE_REG_PHB_ERR_LOG_0); | ||
1016 | ed.phb_log1 = in_be64(hose->cfg_data + PCIE_REG_PHB_ERR_LOG_1); | ||
1017 | out_be64(hose->cfg_data + PCIE_REG_PHB_ERR1_STATUS, 0); | ||
1018 | out_be64(hose->cfg_data + PCIE_REG_PHB_ERR_STATUS, 0); | ||
1019 | } | ||
1020 | ed.mmio_err = in_be64(hose->cfg_data + PCIE_REG_MMIO_ERR_STATUS); | ||
1021 | if (ed.mmio_err) { | ||
1022 | ed.mmio_err1 = in_be64(hose->cfg_data + PCIE_REG_MMIO_ERR1_STATUS); | ||
1023 | ed.mmio_log0 = in_be64(hose->cfg_data + PCIE_REG_MMIO_ERR_LOG_0); | ||
1024 | ed.mmio_log1 = in_be64(hose->cfg_data + PCIE_REG_MMIO_ERR_LOG_1); | ||
1025 | out_be64(hose->cfg_data + PCIE_REG_MMIO_ERR1_STATUS, 0); | ||
1026 | out_be64(hose->cfg_data + PCIE_REG_MMIO_ERR_STATUS, 0); | ||
1027 | } | ||
1028 | ed.dma_err = in_be64(hose->cfg_data + PCIE_REG_DMA_ERR_STATUS); | ||
1029 | if (ed.dma_err) { | ||
1030 | ed.dma_err1 = in_be64(hose->cfg_data + PCIE_REG_DMA_ERR1_STATUS); | ||
1031 | ed.dma_log0 = in_be64(hose->cfg_data + PCIE_REG_DMA_ERR_LOG_0); | ||
1032 | ed.dma_log1 = in_be64(hose->cfg_data + PCIE_REG_DMA_ERR_LOG_1); | ||
1033 | out_be64(hose->cfg_data + PCIE_REG_DMA_ERR1_STATUS, 0); | ||
1034 | out_be64(hose->cfg_data + PCIE_REG_DMA_ERR_STATUS, 0); | ||
1035 | } | ||
1036 | |||
1037 | /* Now print things out */ | ||
1038 | if (ed.phb_err) { | ||
1039 | pr_err(" PHB Error Status : 0x%016llx\n", ed.phb_err); | ||
1040 | pr_err(" PHB First Error Status: 0x%016llx\n", ed.phb_err1); | ||
1041 | pr_err(" PHB Error Log 0 : 0x%016llx\n", ed.phb_log0); | ||
1042 | pr_err(" PHB Error Log 1 : 0x%016llx\n", ed.phb_log1); | ||
1043 | } | ||
1044 | if (ed.mmio_err) { | ||
1045 | pr_err(" MMIO Error Status : 0x%016llx\n", ed.mmio_err); | ||
1046 | pr_err(" MMIO First Error Status: 0x%016llx\n", ed.mmio_err1); | ||
1047 | pr_err(" MMIO Error Log 0 : 0x%016llx\n", ed.mmio_log0); | ||
1048 | pr_err(" MMIO Error Log 1 : 0x%016llx\n", ed.mmio_log1); | ||
1049 | } | ||
1050 | if (ed.dma_err) { | ||
1051 | pr_err(" DMA Error Status : 0x%016llx\n", ed.dma_err); | ||
1052 | pr_err(" DMA First Error Status: 0x%016llx\n", ed.dma_err1); | ||
1053 | pr_err(" DMA Error Log 0 : 0x%016llx\n", ed.dma_log0); | ||
1054 | pr_err(" DMA Error Log 1 : 0x%016llx\n", ed.dma_log1); | ||
1055 | } | ||
1056 | if (ed.utl_sys_err) | ||
1057 | pr_err(" UTL Sys Error Status : 0x%016llx\n", ed.utl_sys_err); | ||
1058 | if (ed.utl_port_err) | ||
1059 | pr_err(" UTL Port Error Status : 0x%016llx\n", ed.utl_port_err); | ||
1060 | if (ed.utl_rc_err) | ||
1061 | pr_err(" UTL RC Error Status : 0x%016llx\n", ed.utl_rc_err); | ||
1062 | |||
1063 | /* Interrupts are caused by the error traps. If we had any error there | ||
1064 | * we loop again in case the UTL buffered some new stuff between | ||
1065 | * going there and going to the traps | ||
1066 | */ | ||
1067 | if (ed.dma_err || ed.mmio_err || ed.phb_err) { | ||
1068 | handled = IRQ_HANDLED; | ||
1069 | goto again; | ||
1070 | } | ||
1071 | return handled; | ||
1072 | } | ||
1073 | |||
1074 | static void __init wsp_setup_pci_err_reporting(struct wsp_phb *phb) | ||
1075 | { | ||
1076 | struct pci_controller *hose = phb->hose; | ||
1077 | int err_irq, i, rc; | ||
1078 | char fname[16]; | ||
1079 | |||
1080 | /* Create a debugfs file for that PHB */ | ||
1081 | sprintf(fname, "phb%d", phb->hose->global_number); | ||
1082 | phb->ddir = debugfs_create_dir(fname, powerpc_debugfs_root); | ||
1083 | |||
1084 | /* Some useful debug output */ | ||
1085 | if (phb->ddir) { | ||
1086 | struct dentry *d = debugfs_create_dir("regs", phb->ddir); | ||
1087 | char tmp[64]; | ||
1088 | |||
1089 | for (i = 0; i < ARRAY_SIZE(wsp_pci_regs); i++) { | ||
1090 | sprintf(tmp, "%03x_%s", wsp_pci_regs[i].offset, | ||
1091 | wsp_pci_regs[i].name); | ||
1092 | debugfs_create_file(tmp, 0600, d, | ||
1093 | hose->cfg_data + wsp_pci_regs[i].offset, | ||
1094 | &wsp_pci_reg_fops); | ||
1095 | } | ||
1096 | debugfs_create_file("all_regs", 0600, phb->ddir, phb, &wsp_pci_regs_fops); | ||
1097 | } | ||
1098 | |||
1099 | /* Find the IRQ number for that PHB */ | ||
1100 | err_irq = irq_of_parse_and_map(hose->dn, 0); | ||
1101 | if (err_irq == 0) | ||
1102 | /* XXX Error IRQ lacking from device-tree */ | ||
1103 | err_irq = wsp_pci_get_err_irq_no_dt(hose->dn); | ||
1104 | if (err_irq == 0) { | ||
1105 | pr_err("PCI: Failed to fetch error interrupt for %s\n", | ||
1106 | hose->dn->full_name); | ||
1107 | return; | ||
1108 | } | ||
1109 | /* Request it */ | ||
1110 | rc = request_irq(err_irq, wsp_pci_err_irq, 0, "wsp_pci error", phb); | ||
1111 | if (rc) { | ||
1112 | pr_err("PCI: Failed to request interrupt for %s\n", | ||
1113 | hose->dn->full_name); | ||
1114 | } | ||
1115 | /* Enable interrupts for all errors for now */ | ||
1116 | out_be64(hose->cfg_data + PCIE_REG_PHB_ERR_IRQ_ENABLE, 0xffffffffffffffffull); | ||
1117 | out_be64(hose->cfg_data + PCIE_REG_MMIO_ERR_IRQ_ENABLE, 0xffffffffffffffffull); | ||
1118 | out_be64(hose->cfg_data + PCIE_REG_DMA_ERR_IRQ_ENABLE, 0xffffffffffffffffull); | ||
1119 | } | ||
1120 | |||
1121 | /* | ||
1122 | * This is called later to hookup with the error interrupt | ||
1123 | */ | ||
1124 | static int __init wsp_setup_pci_late(void) | ||
1125 | { | ||
1126 | struct wsp_phb *phb; | ||
1127 | |||
1128 | list_for_each_entry(phb, &wsp_phbs, all) | ||
1129 | wsp_setup_pci_err_reporting(phb); | ||
1130 | |||
1131 | return 0; | ||
1132 | } | ||
1133 | arch_initcall(wsp_setup_pci_late); | ||
diff --git a/arch/powerpc/platforms/wsp/wsp_pci.h b/arch/powerpc/platforms/wsp/wsp_pci.h new file mode 100644 index 000000000000..52e9bd95250d --- /dev/null +++ b/arch/powerpc/platforms/wsp/wsp_pci.h | |||
@@ -0,0 +1,268 @@ | |||
1 | /* | ||
2 | * Copyright 2010 Ben Herrenschmidt, IBM Corporation | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation; either version | ||
7 | * 2 of the License, or (at your option) any later version. | ||
8 | */ | ||
9 | |||
10 | #ifndef __WSP_PCI_H | ||
11 | #define __WSP_PCI_H | ||
12 | |||
13 | /* Architected registers */ | ||
14 | #define PCIE_REG_DMA_CHAN_STATUS 0x110 | ||
15 | #define PCIE_REG_CPU_LOADSTORE_STATUS 0x120 | ||
16 | |||
17 | #define PCIE_REG_CONFIG_DATA 0x130 | ||
18 | #define PCIE_REG_LOCK0 0x138 | ||
19 | #define PCIE_REG_CONFIG_ADDRESS 0x140 | ||
20 | #define PCIE_REG_CA_ENABLE 0x8000000000000000ull | ||
21 | #define PCIE_REG_CA_BUS_MASK 0x0ff0000000000000ull | ||
22 | #define PCIE_REG_CA_BUS_SHIFT (20+32) | ||
23 | #define PCIE_REG_CA_DEV_MASK 0x000f800000000000ull | ||
24 | #define PCIE_REG_CA_DEV_SHIFT (15+32) | ||
25 | #define PCIE_REG_CA_FUNC_MASK 0x0000700000000000ull | ||
26 | #define PCIE_REG_CA_FUNC_SHIFT (12+32) | ||
27 | #define PCIE_REG_CA_REG_MASK 0x00000fff00000000ull | ||
28 | #define PCIE_REG_CA_REG_SHIFT ( 0+32) | ||
29 | #define PCIE_REG_CA_BE_MASK 0x00000000f0000000ull | ||
30 | #define PCIE_REG_CA_BE_SHIFT ( 28) | ||
31 | #define PCIE_REG_LOCK1 0x148 | ||
32 | |||
33 | #define PCIE_REG_PHB_CONFIG 0x160 | ||
34 | #define PCIE_REG_PHBC_64B_TCE_EN 0x2000000000000000ull | ||
35 | #define PCIE_REG_PHBC_MMIO_DMA_FREEZE_EN 0x1000000000000000ull | ||
36 | #define PCIE_REG_PHBC_32BIT_MSI_EN 0x0080000000000000ull | ||
37 | #define PCIE_REG_PHBC_M64_EN 0x0040000000000000ull | ||
38 | #define PCIE_REG_PHBC_IO_EN 0x0008000000000000ull | ||
39 | #define PCIE_REG_PHBC_64BIT_MSI_EN 0x0002000000000000ull | ||
40 | #define PCIE_REG_PHBC_M32A_EN 0x0000800000000000ull | ||
41 | #define PCIE_REG_PHBC_M32B_EN 0x0000400000000000ull | ||
42 | #define PCIE_REG_PHBC_MSI_PE_VALIDATE 0x0000200000000000ull | ||
43 | #define PCIE_REG_PHBC_DMA_XLATE_BYPASS 0x0000100000000000ull | ||
44 | |||
45 | #define PCIE_REG_IO_BASE_ADDR 0x170 | ||
46 | #define PCIE_REG_IO_BASE_MASK 0x178 | ||
47 | #define PCIE_REG_IO_START_ADDR 0x180 | ||
48 | |||
49 | #define PCIE_REG_M32A_BASE_ADDR 0x190 | ||
50 | #define PCIE_REG_M32A_BASE_MASK 0x198 | ||
51 | #define PCIE_REG_M32A_START_ADDR 0x1a0 | ||
52 | |||
53 | #define PCIE_REG_M32B_BASE_ADDR 0x1b0 | ||
54 | #define PCIE_REG_M32B_BASE_MASK 0x1b8 | ||
55 | #define PCIE_REG_M32B_START_ADDR 0x1c0 | ||
56 | |||
57 | #define PCIE_REG_M64_BASE_ADDR 0x1e0 | ||
58 | #define PCIE_REG_M64_BASE_MASK 0x1e8 | ||
59 | #define PCIE_REG_M64_START_ADDR 0x1f0 | ||
60 | |||
61 | #define PCIE_REG_TCE_KILL 0x210 | ||
62 | #define PCIE_REG_TCEKILL_SINGLE 0x8000000000000000ull | ||
63 | #define PCIE_REG_TCEKILL_ADDR_MASK 0x000003fffffffff8ull | ||
64 | #define PCIE_REG_TCEKILL_PS_4K 0 | ||
65 | #define PCIE_REG_TCEKILL_PS_64K 1 | ||
66 | #define PCIE_REG_TCEKILL_PS_16M 2 | ||
67 | #define PCIE_REG_TCEKILL_PS_16G 3 | ||
68 | |||
69 | #define PCIE_REG_IODA_ADDR 0x220 | ||
70 | #define PCIE_REG_IODA_AD_AUTOINC 0x8000000000000000ull | ||
71 | #define PCIE_REG_IODA_AD_TBL_MVT 0x0005000000000000ull | ||
72 | #define PCIE_REG_IODA_AD_TBL_PELT 0x0006000000000000ull | ||
73 | #define PCIE_REG_IODA_AD_TBL_PESTA 0x0007000000000000ull | ||
74 | #define PCIE_REG_IODA_AD_TBL_PESTB 0x0008000000000000ull | ||
75 | #define PCIE_REG_IODA_AD_TBL_TVT 0x0009000000000000ull | ||
76 | #define PCIE_REG_IODA_AD_TBL_TCE 0x000a000000000000ull | ||
77 | #define PCIE_REG_IODA_DATA0 0x228 | ||
78 | #define PCIE_REG_IODA_DATA1 0x230 | ||
79 | |||
80 | #define PCIE_REG_LOCK2 0x240 | ||
81 | |||
82 | #define PCIE_REG_PHB_GEN_CAP 0x250 | ||
83 | #define PCIE_REG_PHB_TCE_CAP 0x258 | ||
84 | #define PCIE_REG_PHB_IRQ_CAP 0x260 | ||
85 | #define PCIE_REG_PHB_EEH_CAP 0x268 | ||
86 | |||
87 | #define PCIE_REG_PAPR_ERR_INJ_CONTROL 0x2b0 | ||
88 | #define PCIE_REG_PAPR_ERR_INJ_ADDR 0x2b8 | ||
89 | #define PCIE_REG_PAPR_ERR_INJ_MASK 0x2c0 | ||
90 | |||
91 | |||
92 | #define PCIE_REG_SYS_CFG1 0x600 | ||
93 | #define PCIE_REG_SYS_CFG1_CLASS_CODE 0x0000000000ffffffull | ||
94 | |||
95 | #define IODA_TVT0_TTA_MASK 0x000fffffffff0000ull | ||
96 | #define IODA_TVT0_TTA_SHIFT 4 | ||
97 | #define IODA_TVT0_BUSNUM_VALID_MASK 0x000000000000e000ull | ||
98 | #define IODA_TVT0_TCE_TABLE_SIZE_MASK 0x0000000000001f00ull | ||
99 | #define IODA_TVT0_TCE_TABLE_SIZE_SHIFT 8 | ||
100 | #define IODA_TVT0_BUSNUM_VALUE_MASK 0x00000000000000ffull | ||
101 | #define IODA_TVT0_BUSNUM_VALID_SHIFT 0 | ||
102 | #define IODA_TVT1_DEVNUM_VALID 0x2000000000000000ull | ||
103 | #define IODA_TVT1_DEVNUM_VALUE_MASK 0x1f00000000000000ull | ||
104 | #define IODA_TVT1_DEVNUM_VALUE_SHIFT 56 | ||
105 | #define IODA_TVT1_FUNCNUM_VALID 0x0008000000000000ull | ||
106 | #define IODA_TVT1_FUNCNUM_VALUE_MASK 0x0007000000000000ull | ||
107 | #define IODA_TVT1_FUNCNUM_VALUE_SHIFT 48 | ||
108 | #define IODA_TVT1_IO_PAGE_SIZE_MASK 0x00001f0000000000ull | ||
109 | #define IODA_TVT1_IO_PAGE_SIZE_SHIFT 40 | ||
110 | #define IODA_TVT1_PE_NUMBER_MASK 0x000000000000003full | ||
111 | #define IODA_TVT1_PE_NUMBER_SHIFT 0 | ||
112 | |||
113 | #define IODA_TVT_COUNT 64 | ||
114 | |||
115 | /* UTL Core registers */ | ||
116 | #define PCIE_UTL_SYS_BUS_CONTROL 0x400 | ||
117 | #define PCIE_UTL_STATUS 0x408 | ||
118 | #define PCIE_UTL_SYS_BUS_AGENT_STATUS 0x410 | ||
119 | #define PCIE_UTL_SYS_BUS_AGENT_ERR_SEV 0x418 | ||
120 | #define PCIE_UTL_SYS_BUS_AGENT_IRQ_EN 0x420 | ||
121 | #define PCIE_UTL_SYS_BUS_BURST_SZ_CONF 0x440 | ||
122 | #define PCIE_UTL_REVISION_ID 0x448 | ||
123 | |||
124 | #define PCIE_UTL_OUT_POST_HDR_BUF_ALLOC 0x4c0 | ||
125 | #define PCIE_UTL_OUT_POST_DAT_BUF_ALLOC 0x4d0 | ||
126 | #define PCIE_UTL_IN_POST_HDR_BUF_ALLOC 0x4e0 | ||
127 | #define PCIE_UTL_IN_POST_DAT_BUF_ALLOC 0x4f0 | ||
128 | #define PCIE_UTL_OUT_NP_BUF_ALLOC 0x500 | ||
129 | #define PCIE_UTL_IN_NP_BUF_ALLOC 0x510 | ||
130 | #define PCIE_UTL_PCIE_TAGS_ALLOC 0x520 | ||
131 | #define PCIE_UTL_GBIF_READ_TAGS_ALLOC 0x530 | ||
132 | |||
133 | #define PCIE_UTL_PCIE_PORT_CONTROL 0x540 | ||
134 | #define PCIE_UTL_PCIE_PORT_STATUS 0x548 | ||
135 | #define PCIE_UTL_PCIE_PORT_ERROR_SEV 0x550 | ||
136 | #define PCIE_UTL_PCIE_PORT_IRQ_EN 0x558 | ||
137 | #define PCIE_UTL_RC_STATUS 0x560 | ||
138 | #define PCIE_UTL_RC_ERR_SEVERITY 0x568 | ||
139 | #define PCIE_UTL_RC_IRQ_EN 0x570 | ||
140 | #define PCIE_UTL_EP_STATUS 0x578 | ||
141 | #define PCIE_UTL_EP_ERR_SEVERITY 0x580 | ||
142 | #define PCIE_UTL_EP_ERR_IRQ_EN 0x588 | ||
143 | |||
144 | #define PCIE_UTL_PCI_PM_CTRL1 0x590 | ||
145 | #define PCIE_UTL_PCI_PM_CTRL2 0x598 | ||
146 | |||
147 | /* PCIe stack registers */ | ||
148 | #define PCIE_REG_SYSTEM_CONFIG1 0x600 | ||
149 | #define PCIE_REG_SYSTEM_CONFIG2 0x608 | ||
150 | #define PCIE_REG_EP_SYSTEM_CONFIG 0x618 | ||
151 | #define PCIE_REG_EP_FLR 0x620 | ||
152 | #define PCIE_REG_EP_BAR_CONFIG 0x628 | ||
153 | #define PCIE_REG_LINK_CONFIG 0x630 | ||
154 | #define PCIE_REG_PM_CONFIG 0x640 | ||
155 | #define PCIE_REG_DLP_CONTROL 0x650 | ||
156 | #define PCIE_REG_DLP_STATUS 0x658 | ||
157 | #define PCIE_REG_ERR_REPORT_CONTROL 0x660 | ||
158 | #define PCIE_REG_SLOT_CONTROL1 0x670 | ||
159 | #define PCIE_REG_SLOT_CONTROL2 0x678 | ||
160 | #define PCIE_REG_UTL_CONFIG 0x680 | ||
161 | #define PCIE_REG_BUFFERS_CONFIG 0x690 | ||
162 | #define PCIE_REG_ERROR_INJECT 0x698 | ||
163 | #define PCIE_REG_SRIOV_CONFIG 0x6a0 | ||
164 | #define PCIE_REG_PF0_SRIOV_STATUS 0x6a8 | ||
165 | #define PCIE_REG_PF1_SRIOV_STATUS 0x6b0 | ||
166 | #define PCIE_REG_PORT_NUMBER 0x700 | ||
167 | #define PCIE_REG_POR_SYSTEM_CONFIG 0x708 | ||
168 | |||
169 | /* PHB internal logic registers */ | ||
170 | #define PCIE_REG_PHB_VERSION 0x800 | ||
171 | #define PCIE_REG_RESET 0x808 | ||
172 | #define PCIE_REG_PHB_CONTROL 0x810 | ||
173 | #define PCIE_REG_PHB_TIMEOUT_CONTROL1 0x878 | ||
174 | #define PCIE_REG_PHB_QUIESCE_DMA 0x888 | ||
175 | #define PCIE_REG_PHB_DMA_READ_TAG_ACTV 0x900 | ||
176 | #define PCIE_REG_PHB_TCE_READ_TAG_ACTV 0x908 | ||
177 | |||
178 | /* FIR registers */ | ||
179 | #define PCIE_REG_LEM_FIR_ACCUM 0xc00 | ||
180 | #define PCIE_REG_LEM_FIR_AND_MASK 0xc08 | ||
181 | #define PCIE_REG_LEM_FIR_OR_MASK 0xc10 | ||
182 | #define PCIE_REG_LEM_ACTION0 0xc18 | ||
183 | #define PCIE_REG_LEM_ACTION1 0xc20 | ||
184 | #define PCIE_REG_LEM_ERROR_MASK 0xc30 | ||
185 | #define PCIE_REG_LEM_ERROR_AND_MASK 0xc38 | ||
186 | #define PCIE_REG_LEM_ERROR_OR_MASK 0xc40 | ||
187 | |||
188 | /* PHB Error registers */ | ||
189 | #define PCIE_REG_PHB_ERR_STATUS 0xc80 | ||
190 | #define PCIE_REG_PHB_ERR1_STATUS 0xc88 | ||
191 | #define PCIE_REG_PHB_ERR_INJECT 0xc90 | ||
192 | #define PCIE_REG_PHB_ERR_LEM_ENABLE 0xc98 | ||
193 | #define PCIE_REG_PHB_ERR_IRQ_ENABLE 0xca0 | ||
194 | #define PCIE_REG_PHB_ERR_FREEZE_ENABLE 0xca8 | ||
195 | #define PCIE_REG_PHB_ERR_SIDE_ENABLE 0xcb8 | ||
196 | #define PCIE_REG_PHB_ERR_LOG_0 0xcc0 | ||
197 | #define PCIE_REG_PHB_ERR_LOG_1 0xcc8 | ||
198 | #define PCIE_REG_PHB_ERR_STATUS_MASK 0xcd0 | ||
199 | #define PCIE_REG_PHB_ERR1_STATUS_MASK 0xcd8 | ||
200 | |||
201 | #define PCIE_REG_MMIO_ERR_STATUS 0xd00 | ||
202 | #define PCIE_REG_MMIO_ERR1_STATUS 0xd08 | ||
203 | #define PCIE_REG_MMIO_ERR_INJECT 0xd10 | ||
204 | #define PCIE_REG_MMIO_ERR_LEM_ENABLE 0xd18 | ||
205 | #define PCIE_REG_MMIO_ERR_IRQ_ENABLE 0xd20 | ||
206 | #define PCIE_REG_MMIO_ERR_FREEZE_ENABLE 0xd28 | ||
207 | #define PCIE_REG_MMIO_ERR_SIDE_ENABLE 0xd38 | ||
208 | #define PCIE_REG_MMIO_ERR_LOG_0 0xd40 | ||
209 | #define PCIE_REG_MMIO_ERR_LOG_1 0xd48 | ||
210 | #define PCIE_REG_MMIO_ERR_STATUS_MASK 0xd50 | ||
211 | #define PCIE_REG_MMIO_ERR1_STATUS_MASK 0xd58 | ||
212 | |||
213 | #define PCIE_REG_DMA_ERR_STATUS 0xd80 | ||
214 | #define PCIE_REG_DMA_ERR1_STATUS 0xd88 | ||
215 | #define PCIE_REG_DMA_ERR_INJECT 0xd90 | ||
216 | #define PCIE_REG_DMA_ERR_LEM_ENABLE 0xd98 | ||
217 | #define PCIE_REG_DMA_ERR_IRQ_ENABLE 0xda0 | ||
218 | #define PCIE_REG_DMA_ERR_FREEZE_ENABLE 0xda8 | ||
219 | #define PCIE_REG_DMA_ERR_SIDE_ENABLE 0xdb8 | ||
220 | #define PCIE_REG_DMA_ERR_LOG_0 0xdc0 | ||
221 | #define PCIE_REG_DMA_ERR_LOG_1 0xdc8 | ||
222 | #define PCIE_REG_DMA_ERR_STATUS_MASK 0xdd0 | ||
223 | #define PCIE_REG_DMA_ERR1_STATUS_MASK 0xdd8 | ||
224 | |||
225 | /* Shortcuts for access to the above using the PHB definitions | ||
226 | * with an offset | ||
227 | */ | ||
228 | #define PCIE_REG_ERR_PHB_OFFSET 0x0 | ||
229 | #define PCIE_REG_ERR_MMIO_OFFSET 0x80 | ||
230 | #define PCIE_REG_ERR_DMA_OFFSET 0x100 | ||
231 | |||
232 | /* Debug and Trace registers */ | ||
233 | #define PCIE_REG_PHB_DEBUG_CONTROL0 0xe00 | ||
234 | #define PCIE_REG_PHB_DEBUG_STATUS0 0xe08 | ||
235 | #define PCIE_REG_PHB_DEBUG_CONTROL1 0xe10 | ||
236 | #define PCIE_REG_PHB_DEBUG_STATUS1 0xe18 | ||
237 | #define PCIE_REG_PHB_DEBUG_CONTROL2 0xe20 | ||
238 | #define PCIE_REG_PHB_DEBUG_STATUS2 0xe28 | ||
239 | #define PCIE_REG_PHB_DEBUG_CONTROL3 0xe30 | ||
240 | #define PCIE_REG_PHB_DEBUG_STATUS3 0xe38 | ||
241 | #define PCIE_REG_PHB_DEBUG_CONTROL4 0xe40 | ||
242 | #define PCIE_REG_PHB_DEBUG_STATUS4 0xe48 | ||
243 | #define PCIE_REG_PHB_DEBUG_CONTROL5 0xe50 | ||
244 | #define PCIE_REG_PHB_DEBUG_STATUS5 0xe58 | ||
245 | #define PCIE_REG_PHB_DEBUG_CONTROL6 0xe60 | ||
246 | #define PCIE_REG_PHB_DEBUG_STATUS6 0xe68 | ||
247 | |||
248 | /* Definition for PCIe errors */ | ||
249 | struct wsp_pcie_err_log_data { | ||
250 | __u64 phb_err; | ||
251 | __u64 phb_err1; | ||
252 | __u64 phb_log0; | ||
253 | __u64 phb_log1; | ||
254 | __u64 mmio_err; | ||
255 | __u64 mmio_err1; | ||
256 | __u64 mmio_log0; | ||
257 | __u64 mmio_log1; | ||
258 | __u64 dma_err; | ||
259 | __u64 dma_err1; | ||
260 | __u64 dma_log0; | ||
261 | __u64 dma_log1; | ||
262 | __u64 utl_sys_err; | ||
263 | __u64 utl_port_err; | ||
264 | __u64 utl_rc_err; | ||
265 | __u64 unused; | ||
266 | }; | ||
267 | |||
268 | #endif /* __WSP_PCI_H */ | ||
diff --git a/arch/powerpc/sysdev/Makefile b/arch/powerpc/sysdev/Makefile index cf736ca0cf05..84e13253aec5 100644 --- a/arch/powerpc/sysdev/Makefile +++ b/arch/powerpc/sysdev/Makefile | |||
@@ -18,7 +18,6 @@ obj-$(CONFIG_FSL_PCI) += fsl_pci.o $(fsl-msi-obj-y) | |||
18 | obj-$(CONFIG_FSL_PMC) += fsl_pmc.o | 18 | obj-$(CONFIG_FSL_PMC) += fsl_pmc.o |
19 | obj-$(CONFIG_FSL_LBC) += fsl_lbc.o | 19 | obj-$(CONFIG_FSL_LBC) += fsl_lbc.o |
20 | obj-$(CONFIG_FSL_GTM) += fsl_gtm.o | 20 | obj-$(CONFIG_FSL_GTM) += fsl_gtm.o |
21 | obj-$(CONFIG_MPC8xxx_GPIO) += mpc8xxx_gpio.o | ||
22 | obj-$(CONFIG_FSL_85XX_CACHE_SRAM) += fsl_85xx_l2ctlr.o fsl_85xx_cache_sram.o | 21 | obj-$(CONFIG_FSL_85XX_CACHE_SRAM) += fsl_85xx_l2ctlr.o fsl_85xx_cache_sram.o |
23 | obj-$(CONFIG_SIMPLE_GPIO) += simple_gpio.o | 22 | obj-$(CONFIG_SIMPLE_GPIO) += simple_gpio.o |
24 | obj-$(CONFIG_FSL_RIO) += fsl_rio.o | 23 | obj-$(CONFIG_FSL_RIO) += fsl_rio.o |
diff --git a/arch/powerpc/sysdev/axonram.c b/arch/powerpc/sysdev/axonram.c index 265f0f09395a..ba4271919062 100644 --- a/arch/powerpc/sysdev/axonram.c +++ b/arch/powerpc/sysdev/axonram.c | |||
@@ -104,7 +104,7 @@ axon_ram_irq_handler(int irq, void *dev) | |||
104 | * axon_ram_make_request - make_request() method for block device | 104 | * axon_ram_make_request - make_request() method for block device |
105 | * @queue, @bio: see blk_queue_make_request() | 105 | * @queue, @bio: see blk_queue_make_request() |
106 | */ | 106 | */ |
107 | static int | 107 | static void |
108 | axon_ram_make_request(struct request_queue *queue, struct bio *bio) | 108 | axon_ram_make_request(struct request_queue *queue, struct bio *bio) |
109 | { | 109 | { |
110 | struct axon_ram_bank *bank = bio->bi_bdev->bd_disk->private_data; | 110 | struct axon_ram_bank *bank = bio->bi_bdev->bd_disk->private_data; |
@@ -113,7 +113,6 @@ axon_ram_make_request(struct request_queue *queue, struct bio *bio) | |||
113 | struct bio_vec *vec; | 113 | struct bio_vec *vec; |
114 | unsigned int transfered; | 114 | unsigned int transfered; |
115 | unsigned short idx; | 115 | unsigned short idx; |
116 | int rc = 0; | ||
117 | 116 | ||
118 | phys_mem = bank->io_addr + (bio->bi_sector << AXON_RAM_SECTOR_SHIFT); | 117 | phys_mem = bank->io_addr + (bio->bi_sector << AXON_RAM_SECTOR_SHIFT); |
119 | phys_end = bank->io_addr + bank->size; | 118 | phys_end = bank->io_addr + bank->size; |
@@ -121,8 +120,7 @@ axon_ram_make_request(struct request_queue *queue, struct bio *bio) | |||
121 | bio_for_each_segment(vec, bio, idx) { | 120 | bio_for_each_segment(vec, bio, idx) { |
122 | if (unlikely(phys_mem + vec->bv_len > phys_end)) { | 121 | if (unlikely(phys_mem + vec->bv_len > phys_end)) { |
123 | bio_io_error(bio); | 122 | bio_io_error(bio); |
124 | rc = -ERANGE; | 123 | return; |
125 | break; | ||
126 | } | 124 | } |
127 | 125 | ||
128 | user_mem = page_address(vec->bv_page) + vec->bv_offset; | 126 | user_mem = page_address(vec->bv_page) + vec->bv_offset; |
@@ -135,8 +133,6 @@ axon_ram_make_request(struct request_queue *queue, struct bio *bio) | |||
135 | transfered += vec->bv_len; | 133 | transfered += vec->bv_len; |
136 | } | 134 | } |
137 | bio_endio(bio, 0); | 135 | bio_endio(bio, 0); |
138 | |||
139 | return rc; | ||
140 | } | 136 | } |
141 | 137 | ||
142 | /** | 138 | /** |
diff --git a/arch/powerpc/sysdev/bestcomm/sram.c b/arch/powerpc/sysdev/bestcomm/sram.c index 1225012a681a..b6db23e085fb 100644 --- a/arch/powerpc/sysdev/bestcomm/sram.c +++ b/arch/powerpc/sysdev/bestcomm/sram.c | |||
@@ -13,7 +13,7 @@ | |||
13 | 13 | ||
14 | #include <linux/err.h> | 14 | #include <linux/err.h> |
15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
16 | #include <linux/module.h> | 16 | #include <linux/export.h> |
17 | #include <linux/slab.h> | 17 | #include <linux/slab.h> |
18 | #include <linux/spinlock.h> | 18 | #include <linux/spinlock.h> |
19 | #include <linux/string.h> | 19 | #include <linux/string.h> |
diff --git a/arch/powerpc/sysdev/cpm_common.c b/arch/powerpc/sysdev/cpm_common.c index d55d0ad0deab..bf6c7cc0a6af 100644 --- a/arch/powerpc/sysdev/cpm_common.c +++ b/arch/powerpc/sysdev/cpm_common.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Author: Scott Wood <scottwood@freescale.com> | 4 | * Author: Scott Wood <scottwood@freescale.com> |
5 | * | 5 | * |
6 | * Copyright 2007 Freescale Semiconductor, Inc. | 6 | * Copyright 2007-2008,2010 Freescale Semiconductor, Inc. |
7 | * | 7 | * |
8 | * Some parts derived from commproc.c/cpm2_common.c, which is: | 8 | * Some parts derived from commproc.c/cpm2_common.c, which is: |
9 | * Copyright (c) 1997 Dan error_act (dmalek@jlc.net) | 9 | * Copyright (c) 1997 Dan error_act (dmalek@jlc.net) |
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/of_device.h> | 21 | #include <linux/of_device.h> |
22 | #include <linux/spinlock.h> | 22 | #include <linux/spinlock.h> |
23 | #include <linux/export.h> | ||
23 | #include <linux/of.h> | 24 | #include <linux/of.h> |
24 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
25 | 26 | ||
@@ -146,6 +147,7 @@ unsigned long cpm_muram_alloc(unsigned long size, unsigned long align) | |||
146 | spin_lock_irqsave(&cpm_muram_lock, flags); | 147 | spin_lock_irqsave(&cpm_muram_lock, flags); |
147 | cpm_muram_info.alignment = align; | 148 | cpm_muram_info.alignment = align; |
148 | start = rh_alloc(&cpm_muram_info, size, "commproc"); | 149 | start = rh_alloc(&cpm_muram_info, size, "commproc"); |
150 | memset(cpm_muram_addr(start), 0, size); | ||
149 | spin_unlock_irqrestore(&cpm_muram_lock, flags); | 151 | spin_unlock_irqrestore(&cpm_muram_lock, flags); |
150 | 152 | ||
151 | return start; | 153 | return start; |
diff --git a/arch/powerpc/sysdev/dcr.c b/arch/powerpc/sysdev/dcr.c index bb44aa9fd470..1bd0eba4d355 100644 --- a/arch/powerpc/sysdev/dcr.c +++ b/arch/powerpc/sysdev/dcr.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #undef DEBUG | 20 | #undef DEBUG |
21 | 21 | ||
22 | #include <linux/kernel.h> | 22 | #include <linux/kernel.h> |
23 | #include <linux/export.h> | ||
23 | #include <asm/prom.h> | 24 | #include <asm/prom.h> |
24 | #include <asm/dcr.h> | 25 | #include <asm/dcr.h> |
25 | 26 | ||
diff --git a/arch/powerpc/sysdev/fsl_gtm.c b/arch/powerpc/sysdev/fsl_gtm.c index 7dd2885321ad..02cf1e7e77fc 100644 --- a/arch/powerpc/sysdev/fsl_gtm.c +++ b/arch/powerpc/sysdev/fsl_gtm.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/spinlock.h> | 22 | #include <linux/spinlock.h> |
23 | #include <linux/bitops.h> | 23 | #include <linux/bitops.h> |
24 | #include <linux/slab.h> | 24 | #include <linux/slab.h> |
25 | #include <linux/export.h> | ||
25 | #include <asm/fsl_gtm.h> | 26 | #include <asm/fsl_gtm.h> |
26 | 27 | ||
27 | #define GTCFR_STP(x) ((x) & 1 ? 1 << 5 : 1 << 1) | 28 | #define GTCFR_STP(x) ((x) & 1 ? 1 << 5 : 1 << 1) |
diff --git a/arch/powerpc/sysdev/fsl_lbc.c b/arch/powerpc/sysdev/fsl_lbc.c index d917573cf1a8..c4d96fa32ba5 100644 --- a/arch/powerpc/sysdev/fsl_lbc.c +++ b/arch/powerpc/sysdev/fsl_lbc.c | |||
@@ -15,7 +15,7 @@ | |||
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | #include <linux/module.h> | 18 | #include <linux/export.h> |
19 | #include <linux/kernel.h> | 19 | #include <linux/kernel.h> |
20 | #include <linux/compiler.h> | 20 | #include <linux/compiler.h> |
21 | #include <linux/spinlock.h> | 21 | #include <linux/spinlock.h> |
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
24 | #include <linux/of.h> | 24 | #include <linux/of.h> |
25 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
26 | #include <linux/sched.h> | ||
26 | #include <linux/platform_device.h> | 27 | #include <linux/platform_device.h> |
27 | #include <linux/interrupt.h> | 28 | #include <linux/interrupt.h> |
28 | #include <linux/mod_devicetable.h> | 29 | #include <linux/mod_devicetable.h> |
diff --git a/arch/powerpc/sysdev/fsl_msi.c b/arch/powerpc/sysdev/fsl_msi.c index 419a77239bd7..e5c344d336ea 100644 --- a/arch/powerpc/sysdev/fsl_msi.c +++ b/arch/powerpc/sysdev/fsl_msi.c | |||
@@ -30,7 +30,7 @@ LIST_HEAD(msi_head); | |||
30 | 30 | ||
31 | struct fsl_msi_feature { | 31 | struct fsl_msi_feature { |
32 | u32 fsl_pic_ip; | 32 | u32 fsl_pic_ip; |
33 | u32 msiir_offset; | 33 | u32 msiir_offset; /* Offset of MSIIR, relative to start of MSIR bank */ |
34 | }; | 34 | }; |
35 | 35 | ||
36 | struct fsl_msi_cascade_data { | 36 | struct fsl_msi_cascade_data { |
@@ -126,10 +126,19 @@ static void fsl_compose_msi_msg(struct pci_dev *pdev, int hwirq, | |||
126 | { | 126 | { |
127 | struct fsl_msi *msi_data = fsl_msi_data; | 127 | struct fsl_msi *msi_data = fsl_msi_data; |
128 | struct pci_controller *hose = pci_bus_to_host(pdev->bus); | 128 | struct pci_controller *hose = pci_bus_to_host(pdev->bus); |
129 | u64 base = fsl_pci_immrbar_base(hose); | 129 | u64 address; /* Physical address of the MSIIR */ |
130 | int len; | ||
131 | const u64 *reg; | ||
132 | |||
133 | /* If the msi-address-64 property exists, then use it */ | ||
134 | reg = of_get_property(hose->dn, "msi-address-64", &len); | ||
135 | if (reg && (len == sizeof(u64))) | ||
136 | address = be64_to_cpup(reg); | ||
137 | else | ||
138 | address = fsl_pci_immrbar_base(hose) + msi_data->msiir_offset; | ||
130 | 139 | ||
131 | msg->address_lo = msi_data->msi_addr_lo + lower_32_bits(base); | 140 | msg->address_lo = lower_32_bits(address); |
132 | msg->address_hi = msi_data->msi_addr_hi + upper_32_bits(base); | 141 | msg->address_hi = upper_32_bits(address); |
133 | 142 | ||
134 | msg->data = hwirq; | 143 | msg->data = hwirq; |
135 | 144 | ||
@@ -296,7 +305,7 @@ static int __devinit fsl_msi_setup_hwirq(struct fsl_msi *msi, | |||
296 | } | 305 | } |
297 | 306 | ||
298 | msi->msi_virqs[irq_index] = virt_msir; | 307 | msi->msi_virqs[irq_index] = virt_msir; |
299 | cascade_data->index = offset + irq_index; | 308 | cascade_data->index = offset; |
300 | cascade_data->msi_data = msi; | 309 | cascade_data->msi_data = msi; |
301 | irq_set_handler_data(virt_msir, cascade_data); | 310 | irq_set_handler_data(virt_msir, cascade_data); |
302 | irq_set_chained_handler(virt_msir, fsl_msi_cascade); | 311 | irq_set_chained_handler(virt_msir, fsl_msi_cascade); |
@@ -359,8 +368,7 @@ static int __devinit fsl_of_msi_probe(struct platform_device *dev) | |||
359 | 368 | ||
360 | msi->irqhost->host_data = msi; | 369 | msi->irqhost->host_data = msi; |
361 | 370 | ||
362 | msi->msi_addr_hi = 0x0; | 371 | msi->msiir_offset = features->msiir_offset + (res.start & 0xfffff); |
363 | msi->msi_addr_lo = features->msiir_offset + (res.start & 0xfffff); | ||
364 | 372 | ||
365 | rc = fsl_msi_init_allocator(msi); | 373 | rc = fsl_msi_init_allocator(msi); |
366 | if (rc) { | 374 | if (rc) { |
@@ -376,8 +384,10 @@ static int __devinit fsl_of_msi_probe(struct platform_device *dev) | |||
376 | goto error_out; | 384 | goto error_out; |
377 | } | 385 | } |
378 | 386 | ||
379 | if (!p) | 387 | if (!p) { |
380 | p = all_avail; | 388 | p = all_avail; |
389 | len = sizeof(all_avail); | ||
390 | } | ||
381 | 391 | ||
382 | for (irq_index = 0, i = 0; i < len / (2 * sizeof(u32)); i++) { | 392 | for (irq_index = 0, i = 0; i < len / (2 * sizeof(u32)); i++) { |
383 | if (p[i * 2] % IRQS_PER_MSI_REG || | 393 | if (p[i * 2] % IRQS_PER_MSI_REG || |
@@ -393,7 +403,7 @@ static int __devinit fsl_of_msi_probe(struct platform_device *dev) | |||
393 | count = p[i * 2 + 1] / IRQS_PER_MSI_REG; | 403 | count = p[i * 2 + 1] / IRQS_PER_MSI_REG; |
394 | 404 | ||
395 | for (j = 0; j < count; j++, irq_index++) { | 405 | for (j = 0; j < count; j++, irq_index++) { |
396 | err = fsl_msi_setup_hwirq(msi, dev, offset, irq_index); | 406 | err = fsl_msi_setup_hwirq(msi, dev, offset + j, irq_index); |
397 | if (err) | 407 | if (err) |
398 | goto error_out; | 408 | goto error_out; |
399 | } | 409 | } |
diff --git a/arch/powerpc/sysdev/fsl_msi.h b/arch/powerpc/sysdev/fsl_msi.h index 624580c252d7..1313abbc5200 100644 --- a/arch/powerpc/sysdev/fsl_msi.h +++ b/arch/powerpc/sysdev/fsl_msi.h | |||
@@ -28,8 +28,7 @@ struct fsl_msi { | |||
28 | 28 | ||
29 | unsigned long cascade_irq; | 29 | unsigned long cascade_irq; |
30 | 30 | ||
31 | u32 msi_addr_lo; | 31 | u32 msiir_offset; /* Offset of MSIIR, relative to start of CCSR */ |
32 | u32 msi_addr_hi; | ||
33 | void __iomem *msi_regs; | 32 | void __iomem *msi_regs; |
34 | u32 feature; | 33 | u32 feature; |
35 | int msi_virqs[NR_MSI_REG]; | 34 | int msi_virqs[NR_MSI_REG]; |
diff --git a/arch/powerpc/sysdev/fsl_pmc.c b/arch/powerpc/sysdev/fsl_pmc.c index f122e8961d32..592a0f8d527a 100644 --- a/arch/powerpc/sysdev/fsl_pmc.c +++ b/arch/powerpc/sysdev/fsl_pmc.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/types.h> | 15 | #include <linux/types.h> |
16 | #include <linux/errno.h> | 16 | #include <linux/errno.h> |
17 | #include <linux/export.h> | ||
17 | #include <linux/suspend.h> | 18 | #include <linux/suspend.h> |
18 | #include <linux/delay.h> | 19 | #include <linux/delay.h> |
19 | #include <linux/device.h> | 20 | #include <linux/device.h> |
diff --git a/arch/powerpc/sysdev/fsl_rio.c b/arch/powerpc/sysdev/fsl_rio.c index c65f75aa7ff7..de170fd5ba4e 100644 --- a/arch/powerpc/sysdev/fsl_rio.c +++ b/arch/powerpc/sysdev/fsl_rio.c | |||
@@ -23,7 +23,7 @@ | |||
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include <linux/init.h> | 25 | #include <linux/init.h> |
26 | #include <linux/module.h> | 26 | #include <linux/export.h> |
27 | #include <linux/types.h> | 27 | #include <linux/types.h> |
28 | #include <linux/dma-mapping.h> | 28 | #include <linux/dma-mapping.h> |
29 | #include <linux/interrupt.h> | 29 | #include <linux/interrupt.h> |
@@ -1608,6 +1608,7 @@ int fsl_rio_setup(struct platform_device *dev) | |||
1608 | return 0; | 1608 | return 0; |
1609 | err: | 1609 | err: |
1610 | iounmap(priv->regs_win); | 1610 | iounmap(priv->regs_win); |
1611 | release_resource(&port->iores); | ||
1611 | err_res: | 1612 | err_res: |
1612 | kfree(priv); | 1613 | kfree(priv); |
1613 | err_priv: | 1614 | err_priv: |
diff --git a/arch/powerpc/sysdev/fsl_soc.c b/arch/powerpc/sysdev/fsl_soc.c index 2d66275e489f..e8f385fbf549 100644 --- a/arch/powerpc/sysdev/fsl_soc.c +++ b/arch/powerpc/sysdev/fsl_soc.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include <linux/major.h> | 19 | #include <linux/major.h> |
20 | #include <linux/delay.h> | 20 | #include <linux/delay.h> |
21 | #include <linux/irq.h> | 21 | #include <linux/irq.h> |
22 | #include <linux/module.h> | 22 | #include <linux/export.h> |
23 | #include <linux/device.h> | 23 | #include <linux/device.h> |
24 | #include <linux/platform_device.h> | 24 | #include <linux/platform_device.h> |
25 | #include <linux/of.h> | 25 | #include <linux/of.h> |
diff --git a/arch/powerpc/sysdev/fsl_soc.h b/arch/powerpc/sysdev/fsl_soc.h index 2ece02beb8ff..c6d00736f07f 100644 --- a/arch/powerpc/sysdev/fsl_soc.h +++ b/arch/powerpc/sysdev/fsl_soc.h | |||
@@ -22,15 +22,24 @@ struct device_node; | |||
22 | extern void fsl_rstcr_restart(char *cmd); | 22 | extern void fsl_rstcr_restart(char *cmd); |
23 | 23 | ||
24 | #if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE) | 24 | #if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE) |
25 | |||
26 | /* The different ports that the DIU can be connected to */ | ||
27 | enum fsl_diu_monitor_port { | ||
28 | FSL_DIU_PORT_DVI, /* DVI */ | ||
29 | FSL_DIU_PORT_LVDS, /* Single-link LVDS */ | ||
30 | FSL_DIU_PORT_DLVDS /* Dual-link LVDS */ | ||
31 | }; | ||
32 | |||
25 | struct platform_diu_data_ops { | 33 | struct platform_diu_data_ops { |
26 | unsigned int (*get_pixel_format) (unsigned int bits_per_pixel, | 34 | u32 (*get_pixel_format)(enum fsl_diu_monitor_port port, |
27 | int monitor_port); | 35 | unsigned int bpp); |
28 | void (*set_gamma_table) (int monitor_port, char *gamma_table_base); | 36 | void (*set_gamma_table)(enum fsl_diu_monitor_port port, |
29 | void (*set_monitor_port) (int monitor_port); | 37 | char *gamma_table_base); |
30 | void (*set_pixel_clock) (unsigned int pixclock); | 38 | void (*set_monitor_port)(enum fsl_diu_monitor_port port); |
31 | ssize_t (*show_monitor_port) (int monitor_port, char *buf); | 39 | void (*set_pixel_clock)(unsigned int pixclock); |
32 | int (*set_sysfs_monitor_port) (int val); | 40 | enum fsl_diu_monitor_port (*valid_monitor_port) |
33 | void (*release_bootmem) (void); | 41 | (enum fsl_diu_monitor_port port); |
42 | void (*release_bootmem)(void); | ||
34 | }; | 43 | }; |
35 | 44 | ||
36 | extern struct platform_diu_data_ops diu_ops; | 45 | extern struct platform_diu_data_ops diu_ops; |
diff --git a/arch/powerpc/sysdev/mpc5xxx_clocks.c b/arch/powerpc/sysdev/mpc5xxx_clocks.c index 34e12f9995fe..96f815a55dfd 100644 --- a/arch/powerpc/sysdev/mpc5xxx_clocks.c +++ b/arch/powerpc/sysdev/mpc5xxx_clocks.c | |||
@@ -8,6 +8,7 @@ | |||
8 | 8 | ||
9 | #include <linux/kernel.h> | 9 | #include <linux/kernel.h> |
10 | #include <linux/of_platform.h> | 10 | #include <linux/of_platform.h> |
11 | #include <linux/export.h> | ||
11 | 12 | ||
12 | unsigned int | 13 | unsigned int |
13 | mpc5xxx_get_bus_frequency(struct device_node *node) | 14 | mpc5xxx_get_bus_frequency(struct device_node *node) |
diff --git a/arch/powerpc/sysdev/mpc8xx_pic.c b/arch/powerpc/sysdev/mpc8xx_pic.c index 22e48e2d71f1..2ca0a85fcce9 100644 --- a/arch/powerpc/sysdev/mpc8xx_pic.c +++ b/arch/powerpc/sysdev/mpc8xx_pic.c | |||
@@ -1,5 +1,4 @@ | |||
1 | #include <linux/kernel.h> | 1 | #include <linux/kernel.h> |
2 | #include <linux/module.h> | ||
3 | #include <linux/stddef.h> | 2 | #include <linux/stddef.h> |
4 | #include <linux/init.h> | 3 | #include <linux/init.h> |
5 | #include <linux/sched.h> | 4 | #include <linux/sched.h> |
diff --git a/arch/powerpc/sysdev/mpc8xxx_gpio.c b/arch/powerpc/sysdev/mpc8xxx_gpio.c deleted file mode 100644 index fb4963abdf55..000000000000 --- a/arch/powerpc/sysdev/mpc8xxx_gpio.c +++ /dev/null | |||
@@ -1,395 +0,0 @@ | |||
1 | /* | ||
2 | * GPIOs on MPC512x/8349/8572/8610 and compatible | ||
3 | * | ||
4 | * Copyright (C) 2008 Peter Korsgaard <jacmet@sunsite.dk> | ||
5 | * | ||
6 | * This file is licensed under the terms of the GNU General Public License | ||
7 | * version 2. This program is licensed "as is" without any warranty of any | ||
8 | * kind, whether express or implied. | ||
9 | */ | ||
10 | |||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/init.h> | ||
13 | #include <linux/spinlock.h> | ||
14 | #include <linux/io.h> | ||
15 | #include <linux/of.h> | ||
16 | #include <linux/of_gpio.h> | ||
17 | #include <linux/gpio.h> | ||
18 | #include <linux/slab.h> | ||
19 | #include <linux/irq.h> | ||
20 | |||
21 | #define MPC8XXX_GPIO_PINS 32 | ||
22 | |||
23 | #define GPIO_DIR 0x00 | ||
24 | #define GPIO_ODR 0x04 | ||
25 | #define GPIO_DAT 0x08 | ||
26 | #define GPIO_IER 0x0c | ||
27 | #define GPIO_IMR 0x10 | ||
28 | #define GPIO_ICR 0x14 | ||
29 | #define GPIO_ICR2 0x18 | ||
30 | |||
31 | struct mpc8xxx_gpio_chip { | ||
32 | struct of_mm_gpio_chip mm_gc; | ||
33 | spinlock_t lock; | ||
34 | |||
35 | /* | ||
36 | * shadowed data register to be able to clear/set output pins in | ||
37 | * open drain mode safely | ||
38 | */ | ||
39 | u32 data; | ||
40 | struct irq_host *irq; | ||
41 | void *of_dev_id_data; | ||
42 | }; | ||
43 | |||
44 | static inline u32 mpc8xxx_gpio2mask(unsigned int gpio) | ||
45 | { | ||
46 | return 1u << (MPC8XXX_GPIO_PINS - 1 - gpio); | ||
47 | } | ||
48 | |||
49 | static inline struct mpc8xxx_gpio_chip * | ||
50 | to_mpc8xxx_gpio_chip(struct of_mm_gpio_chip *mm) | ||
51 | { | ||
52 | return container_of(mm, struct mpc8xxx_gpio_chip, mm_gc); | ||
53 | } | ||
54 | |||
55 | static void mpc8xxx_gpio_save_regs(struct of_mm_gpio_chip *mm) | ||
56 | { | ||
57 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm); | ||
58 | |||
59 | mpc8xxx_gc->data = in_be32(mm->regs + GPIO_DAT); | ||
60 | } | ||
61 | |||
62 | /* Workaround GPIO 1 errata on MPC8572/MPC8536. The status of GPIOs | ||
63 | * defined as output cannot be determined by reading GPDAT register, | ||
64 | * so we use shadow data register instead. The status of input pins | ||
65 | * is determined by reading GPDAT register. | ||
66 | */ | ||
67 | static int mpc8572_gpio_get(struct gpio_chip *gc, unsigned int gpio) | ||
68 | { | ||
69 | u32 val; | ||
70 | struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc); | ||
71 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm); | ||
72 | |||
73 | val = in_be32(mm->regs + GPIO_DAT) & ~in_be32(mm->regs + GPIO_DIR); | ||
74 | |||
75 | return (val | mpc8xxx_gc->data) & mpc8xxx_gpio2mask(gpio); | ||
76 | } | ||
77 | |||
78 | static int mpc8xxx_gpio_get(struct gpio_chip *gc, unsigned int gpio) | ||
79 | { | ||
80 | struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc); | ||
81 | |||
82 | return in_be32(mm->regs + GPIO_DAT) & mpc8xxx_gpio2mask(gpio); | ||
83 | } | ||
84 | |||
85 | static void mpc8xxx_gpio_set(struct gpio_chip *gc, unsigned int gpio, int val) | ||
86 | { | ||
87 | struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc); | ||
88 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm); | ||
89 | unsigned long flags; | ||
90 | |||
91 | spin_lock_irqsave(&mpc8xxx_gc->lock, flags); | ||
92 | |||
93 | if (val) | ||
94 | mpc8xxx_gc->data |= mpc8xxx_gpio2mask(gpio); | ||
95 | else | ||
96 | mpc8xxx_gc->data &= ~mpc8xxx_gpio2mask(gpio); | ||
97 | |||
98 | out_be32(mm->regs + GPIO_DAT, mpc8xxx_gc->data); | ||
99 | |||
100 | spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags); | ||
101 | } | ||
102 | |||
103 | static int mpc8xxx_gpio_dir_in(struct gpio_chip *gc, unsigned int gpio) | ||
104 | { | ||
105 | struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc); | ||
106 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm); | ||
107 | unsigned long flags; | ||
108 | |||
109 | spin_lock_irqsave(&mpc8xxx_gc->lock, flags); | ||
110 | |||
111 | clrbits32(mm->regs + GPIO_DIR, mpc8xxx_gpio2mask(gpio)); | ||
112 | |||
113 | spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags); | ||
114 | |||
115 | return 0; | ||
116 | } | ||
117 | |||
118 | static int mpc8xxx_gpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val) | ||
119 | { | ||
120 | struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc); | ||
121 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm); | ||
122 | unsigned long flags; | ||
123 | |||
124 | mpc8xxx_gpio_set(gc, gpio, val); | ||
125 | |||
126 | spin_lock_irqsave(&mpc8xxx_gc->lock, flags); | ||
127 | |||
128 | setbits32(mm->regs + GPIO_DIR, mpc8xxx_gpio2mask(gpio)); | ||
129 | |||
130 | spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags); | ||
131 | |||
132 | return 0; | ||
133 | } | ||
134 | |||
135 | static int mpc8xxx_gpio_to_irq(struct gpio_chip *gc, unsigned offset) | ||
136 | { | ||
137 | struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc); | ||
138 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm); | ||
139 | |||
140 | if (mpc8xxx_gc->irq && offset < MPC8XXX_GPIO_PINS) | ||
141 | return irq_create_mapping(mpc8xxx_gc->irq, offset); | ||
142 | else | ||
143 | return -ENXIO; | ||
144 | } | ||
145 | |||
146 | static void mpc8xxx_gpio_irq_cascade(unsigned int irq, struct irq_desc *desc) | ||
147 | { | ||
148 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_desc_get_handler_data(desc); | ||
149 | struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc; | ||
150 | unsigned int mask; | ||
151 | |||
152 | mask = in_be32(mm->regs + GPIO_IER) & in_be32(mm->regs + GPIO_IMR); | ||
153 | if (mask) | ||
154 | generic_handle_irq(irq_linear_revmap(mpc8xxx_gc->irq, | ||
155 | 32 - ffs(mask))); | ||
156 | } | ||
157 | |||
158 | static void mpc8xxx_irq_unmask(struct irq_data *d) | ||
159 | { | ||
160 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d); | ||
161 | struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc; | ||
162 | unsigned long flags; | ||
163 | |||
164 | spin_lock_irqsave(&mpc8xxx_gc->lock, flags); | ||
165 | |||
166 | setbits32(mm->regs + GPIO_IMR, mpc8xxx_gpio2mask(irqd_to_hwirq(d))); | ||
167 | |||
168 | spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags); | ||
169 | } | ||
170 | |||
171 | static void mpc8xxx_irq_mask(struct irq_data *d) | ||
172 | { | ||
173 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d); | ||
174 | struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc; | ||
175 | unsigned long flags; | ||
176 | |||
177 | spin_lock_irqsave(&mpc8xxx_gc->lock, flags); | ||
178 | |||
179 | clrbits32(mm->regs + GPIO_IMR, mpc8xxx_gpio2mask(irqd_to_hwirq(d))); | ||
180 | |||
181 | spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags); | ||
182 | } | ||
183 | |||
184 | static void mpc8xxx_irq_ack(struct irq_data *d) | ||
185 | { | ||
186 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d); | ||
187 | struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc; | ||
188 | |||
189 | out_be32(mm->regs + GPIO_IER, mpc8xxx_gpio2mask(irqd_to_hwirq(d))); | ||
190 | } | ||
191 | |||
192 | static int mpc8xxx_irq_set_type(struct irq_data *d, unsigned int flow_type) | ||
193 | { | ||
194 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d); | ||
195 | struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc; | ||
196 | unsigned long flags; | ||
197 | |||
198 | switch (flow_type) { | ||
199 | case IRQ_TYPE_EDGE_FALLING: | ||
200 | spin_lock_irqsave(&mpc8xxx_gc->lock, flags); | ||
201 | setbits32(mm->regs + GPIO_ICR, | ||
202 | mpc8xxx_gpio2mask(irqd_to_hwirq(d))); | ||
203 | spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags); | ||
204 | break; | ||
205 | |||
206 | case IRQ_TYPE_EDGE_BOTH: | ||
207 | spin_lock_irqsave(&mpc8xxx_gc->lock, flags); | ||
208 | clrbits32(mm->regs + GPIO_ICR, | ||
209 | mpc8xxx_gpio2mask(irqd_to_hwirq(d))); | ||
210 | spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags); | ||
211 | break; | ||
212 | |||
213 | default: | ||
214 | return -EINVAL; | ||
215 | } | ||
216 | |||
217 | return 0; | ||
218 | } | ||
219 | |||
220 | static int mpc512x_irq_set_type(struct irq_data *d, unsigned int flow_type) | ||
221 | { | ||
222 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d); | ||
223 | struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc; | ||
224 | unsigned long gpio = irqd_to_hwirq(d); | ||
225 | void __iomem *reg; | ||
226 | unsigned int shift; | ||
227 | unsigned long flags; | ||
228 | |||
229 | if (gpio < 16) { | ||
230 | reg = mm->regs + GPIO_ICR; | ||
231 | shift = (15 - gpio) * 2; | ||
232 | } else { | ||
233 | reg = mm->regs + GPIO_ICR2; | ||
234 | shift = (15 - (gpio % 16)) * 2; | ||
235 | } | ||
236 | |||
237 | switch (flow_type) { | ||
238 | case IRQ_TYPE_EDGE_FALLING: | ||
239 | case IRQ_TYPE_LEVEL_LOW: | ||
240 | spin_lock_irqsave(&mpc8xxx_gc->lock, flags); | ||
241 | clrsetbits_be32(reg, 3 << shift, 2 << shift); | ||
242 | spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags); | ||
243 | break; | ||
244 | |||
245 | case IRQ_TYPE_EDGE_RISING: | ||
246 | case IRQ_TYPE_LEVEL_HIGH: | ||
247 | spin_lock_irqsave(&mpc8xxx_gc->lock, flags); | ||
248 | clrsetbits_be32(reg, 3 << shift, 1 << shift); | ||
249 | spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags); | ||
250 | break; | ||
251 | |||
252 | case IRQ_TYPE_EDGE_BOTH: | ||
253 | spin_lock_irqsave(&mpc8xxx_gc->lock, flags); | ||
254 | clrbits32(reg, 3 << shift); | ||
255 | spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags); | ||
256 | break; | ||
257 | |||
258 | default: | ||
259 | return -EINVAL; | ||
260 | } | ||
261 | |||
262 | return 0; | ||
263 | } | ||
264 | |||
265 | static struct irq_chip mpc8xxx_irq_chip = { | ||
266 | .name = "mpc8xxx-gpio", | ||
267 | .irq_unmask = mpc8xxx_irq_unmask, | ||
268 | .irq_mask = mpc8xxx_irq_mask, | ||
269 | .irq_ack = mpc8xxx_irq_ack, | ||
270 | .irq_set_type = mpc8xxx_irq_set_type, | ||
271 | }; | ||
272 | |||
273 | static int mpc8xxx_gpio_irq_map(struct irq_host *h, unsigned int virq, | ||
274 | irq_hw_number_t hw) | ||
275 | { | ||
276 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = h->host_data; | ||
277 | |||
278 | if (mpc8xxx_gc->of_dev_id_data) | ||
279 | mpc8xxx_irq_chip.irq_set_type = mpc8xxx_gc->of_dev_id_data; | ||
280 | |||
281 | irq_set_chip_data(virq, h->host_data); | ||
282 | irq_set_chip_and_handler(virq, &mpc8xxx_irq_chip, handle_level_irq); | ||
283 | irq_set_irq_type(virq, IRQ_TYPE_NONE); | ||
284 | |||
285 | return 0; | ||
286 | } | ||
287 | |||
288 | static int mpc8xxx_gpio_irq_xlate(struct irq_host *h, struct device_node *ct, | ||
289 | const u32 *intspec, unsigned int intsize, | ||
290 | irq_hw_number_t *out_hwirq, | ||
291 | unsigned int *out_flags) | ||
292 | |||
293 | { | ||
294 | /* interrupt sense values coming from the device tree equal either | ||
295 | * EDGE_FALLING or EDGE_BOTH | ||
296 | */ | ||
297 | *out_hwirq = intspec[0]; | ||
298 | *out_flags = intspec[1]; | ||
299 | |||
300 | return 0; | ||
301 | } | ||
302 | |||
303 | static struct irq_host_ops mpc8xxx_gpio_irq_ops = { | ||
304 | .map = mpc8xxx_gpio_irq_map, | ||
305 | .xlate = mpc8xxx_gpio_irq_xlate, | ||
306 | }; | ||
307 | |||
308 | static struct of_device_id mpc8xxx_gpio_ids[] __initdata = { | ||
309 | { .compatible = "fsl,mpc8349-gpio", }, | ||
310 | { .compatible = "fsl,mpc8572-gpio", }, | ||
311 | { .compatible = "fsl,mpc8610-gpio", }, | ||
312 | { .compatible = "fsl,mpc5121-gpio", .data = mpc512x_irq_set_type, }, | ||
313 | { .compatible = "fsl,qoriq-gpio", }, | ||
314 | {} | ||
315 | }; | ||
316 | |||
317 | static void __init mpc8xxx_add_controller(struct device_node *np) | ||
318 | { | ||
319 | struct mpc8xxx_gpio_chip *mpc8xxx_gc; | ||
320 | struct of_mm_gpio_chip *mm_gc; | ||
321 | struct gpio_chip *gc; | ||
322 | const struct of_device_id *id; | ||
323 | unsigned hwirq; | ||
324 | int ret; | ||
325 | |||
326 | mpc8xxx_gc = kzalloc(sizeof(*mpc8xxx_gc), GFP_KERNEL); | ||
327 | if (!mpc8xxx_gc) { | ||
328 | ret = -ENOMEM; | ||
329 | goto err; | ||
330 | } | ||
331 | |||
332 | spin_lock_init(&mpc8xxx_gc->lock); | ||
333 | |||
334 | mm_gc = &mpc8xxx_gc->mm_gc; | ||
335 | gc = &mm_gc->gc; | ||
336 | |||
337 | mm_gc->save_regs = mpc8xxx_gpio_save_regs; | ||
338 | gc->ngpio = MPC8XXX_GPIO_PINS; | ||
339 | gc->direction_input = mpc8xxx_gpio_dir_in; | ||
340 | gc->direction_output = mpc8xxx_gpio_dir_out; | ||
341 | if (of_device_is_compatible(np, "fsl,mpc8572-gpio")) | ||
342 | gc->get = mpc8572_gpio_get; | ||
343 | else | ||
344 | gc->get = mpc8xxx_gpio_get; | ||
345 | gc->set = mpc8xxx_gpio_set; | ||
346 | gc->to_irq = mpc8xxx_gpio_to_irq; | ||
347 | |||
348 | ret = of_mm_gpiochip_add(np, mm_gc); | ||
349 | if (ret) | ||
350 | goto err; | ||
351 | |||
352 | hwirq = irq_of_parse_and_map(np, 0); | ||
353 | if (hwirq == NO_IRQ) | ||
354 | goto skip_irq; | ||
355 | |||
356 | mpc8xxx_gc->irq = | ||
357 | irq_alloc_host(np, IRQ_HOST_MAP_LINEAR, MPC8XXX_GPIO_PINS, | ||
358 | &mpc8xxx_gpio_irq_ops, MPC8XXX_GPIO_PINS); | ||
359 | if (!mpc8xxx_gc->irq) | ||
360 | goto skip_irq; | ||
361 | |||
362 | id = of_match_node(mpc8xxx_gpio_ids, np); | ||
363 | if (id) | ||
364 | mpc8xxx_gc->of_dev_id_data = id->data; | ||
365 | |||
366 | mpc8xxx_gc->irq->host_data = mpc8xxx_gc; | ||
367 | |||
368 | /* ack and mask all irqs */ | ||
369 | out_be32(mm_gc->regs + GPIO_IER, 0xffffffff); | ||
370 | out_be32(mm_gc->regs + GPIO_IMR, 0); | ||
371 | |||
372 | irq_set_handler_data(hwirq, mpc8xxx_gc); | ||
373 | irq_set_chained_handler(hwirq, mpc8xxx_gpio_irq_cascade); | ||
374 | |||
375 | skip_irq: | ||
376 | return; | ||
377 | |||
378 | err: | ||
379 | pr_err("%s: registration failed with status %d\n", | ||
380 | np->full_name, ret); | ||
381 | kfree(mpc8xxx_gc); | ||
382 | |||
383 | return; | ||
384 | } | ||
385 | |||
386 | static int __init mpc8xxx_add_gpiochips(void) | ||
387 | { | ||
388 | struct device_node *np; | ||
389 | |||
390 | for_each_matching_node(np, mpc8xxx_gpio_ids) | ||
391 | mpc8xxx_add_controller(np); | ||
392 | |||
393 | return 0; | ||
394 | } | ||
395 | arch_initcall(mpc8xxx_add_gpiochips); | ||
diff --git a/arch/powerpc/sysdev/mpic.c b/arch/powerpc/sysdev/mpic.c index d5d3ff3d757e..8c7e8528e7c4 100644 --- a/arch/powerpc/sysdev/mpic.c +++ b/arch/powerpc/sysdev/mpic.c | |||
@@ -800,8 +800,6 @@ static void mpic_end_ipi(struct irq_data *d) | |||
800 | * IPIs are marked IRQ_PER_CPU. This has the side effect of | 800 | * IPIs are marked IRQ_PER_CPU. This has the side effect of |
801 | * preventing the IRQ_PENDING/IRQ_INPROGRESS logic from | 801 | * preventing the IRQ_PENDING/IRQ_INPROGRESS logic from |
802 | * applying to them. We EOI them late to avoid re-entering. | 802 | * applying to them. We EOI them late to avoid re-entering. |
803 | * We mark IPI's with IRQF_DISABLED as they must run with | ||
804 | * irqs disabled. | ||
805 | */ | 803 | */ |
806 | mpic_eoi(mpic); | 804 | mpic_eoi(mpic); |
807 | } | 805 | } |
@@ -1285,13 +1283,11 @@ struct mpic * __init mpic_alloc(struct device_node *node, | |||
1285 | mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0)) | 1283 | mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0)) |
1286 | | MPIC_GREG_GCONF_MCK); | 1284 | | MPIC_GREG_GCONF_MCK); |
1287 | 1285 | ||
1288 | /* Read feature register, calculate num CPUs and, for non-ISU | 1286 | /* |
1289 | * MPICs, num sources as well. On ISU MPICs, sources are counted | 1287 | * Read feature register. For non-ISU MPICs, num sources as well. On |
1290 | * as ISUs are added | 1288 | * ISU MPICs, sources are counted as ISUs are added |
1291 | */ | 1289 | */ |
1292 | greg_feature = mpic_read(mpic->gregs, MPIC_INFO(GREG_FEATURE_0)); | 1290 | greg_feature = mpic_read(mpic->gregs, MPIC_INFO(GREG_FEATURE_0)); |
1293 | mpic->num_cpus = ((greg_feature & MPIC_GREG_FEATURE_LAST_CPU_MASK) | ||
1294 | >> MPIC_GREG_FEATURE_LAST_CPU_SHIFT) + 1; | ||
1295 | if (isu_size == 0) { | 1291 | if (isu_size == 0) { |
1296 | if (flags & MPIC_BROKEN_FRR_NIRQS) | 1292 | if (flags & MPIC_BROKEN_FRR_NIRQS) |
1297 | mpic->num_sources = mpic->irq_count; | 1293 | mpic->num_sources = mpic->irq_count; |
@@ -1301,10 +1297,18 @@ struct mpic * __init mpic_alloc(struct device_node *node, | |||
1301 | >> MPIC_GREG_FEATURE_LAST_SRC_SHIFT) + 1; | 1297 | >> MPIC_GREG_FEATURE_LAST_SRC_SHIFT) + 1; |
1302 | } | 1298 | } |
1303 | 1299 | ||
1300 | /* | ||
1301 | * The MPIC driver will crash if there are more cores than we | ||
1302 | * can initialize, so we may as well catch that problem here. | ||
1303 | */ | ||
1304 | BUG_ON(num_possible_cpus() > MPIC_MAX_CPUS); | ||
1305 | |||
1304 | /* Map the per-CPU registers */ | 1306 | /* Map the per-CPU registers */ |
1305 | for (i = 0; i < mpic->num_cpus; i++) { | 1307 | for_each_possible_cpu(i) { |
1306 | mpic_map(mpic, node, paddr, &mpic->cpuregs[i], | 1308 | unsigned int cpu = get_hard_smp_processor_id(i); |
1307 | MPIC_INFO(CPU_BASE) + i * MPIC_INFO(CPU_STRIDE), | 1309 | |
1310 | mpic_map(mpic, node, paddr, &mpic->cpuregs[cpu], | ||
1311 | MPIC_INFO(CPU_BASE) + cpu * MPIC_INFO(CPU_STRIDE), | ||
1308 | 0x1000); | 1312 | 0x1000); |
1309 | } | 1313 | } |
1310 | 1314 | ||
@@ -1343,7 +1347,7 @@ struct mpic * __init mpic_alloc(struct device_node *node, | |||
1343 | } | 1347 | } |
1344 | printk(KERN_INFO "mpic: Setting up MPIC \"%s\" version %s at %llx," | 1348 | printk(KERN_INFO "mpic: Setting up MPIC \"%s\" version %s at %llx," |
1345 | " max %d CPUs\n", | 1349 | " max %d CPUs\n", |
1346 | name, vers, (unsigned long long)paddr, mpic->num_cpus); | 1350 | name, vers, (unsigned long long)paddr, num_possible_cpus()); |
1347 | printk(KERN_INFO "mpic: ISU size: %d, shift: %d, mask: %x\n", | 1351 | printk(KERN_INFO "mpic: ISU size: %d, shift: %d, mask: %x\n", |
1348 | mpic->isu_size, mpic->isu_shift, mpic->isu_mask); | 1352 | mpic->isu_size, mpic->isu_shift, mpic->isu_mask); |
1349 | 1353 | ||
@@ -1742,6 +1746,7 @@ void mpic_reset_core(int cpu) | |||
1742 | struct mpic *mpic = mpic_primary; | 1746 | struct mpic *mpic = mpic_primary; |
1743 | u32 pir; | 1747 | u32 pir; |
1744 | int cpuid = get_hard_smp_processor_id(cpu); | 1748 | int cpuid = get_hard_smp_processor_id(cpu); |
1749 | int i; | ||
1745 | 1750 | ||
1746 | /* Set target bit for core reset */ | 1751 | /* Set target bit for core reset */ |
1747 | pir = mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT)); | 1752 | pir = mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT)); |
@@ -1753,6 +1758,15 @@ void mpic_reset_core(int cpu) | |||
1753 | pir &= ~(1 << cpuid); | 1758 | pir &= ~(1 << cpuid); |
1754 | mpic_write(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT), pir); | 1759 | mpic_write(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT), pir); |
1755 | mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT)); | 1760 | mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT)); |
1761 | |||
1762 | /* Perform 15 EOI on each reset core to clear pending interrupts. | ||
1763 | * This is required for FSL CoreNet based devices */ | ||
1764 | if (mpic->flags & MPIC_FSL) { | ||
1765 | for (i = 0; i < 15; i++) { | ||
1766 | _mpic_write(mpic->reg_type, &mpic->cpuregs[cpuid], | ||
1767 | MPIC_CPU_EOI, 0); | ||
1768 | } | ||
1769 | } | ||
1756 | } | 1770 | } |
1757 | #endif /* CONFIG_SMP */ | 1771 | #endif /* CONFIG_SMP */ |
1758 | 1772 | ||
diff --git a/arch/powerpc/sysdev/mv64x60_pci.c b/arch/powerpc/sysdev/mv64x60_pci.c index 77bb3f4d530a..b0037cefaada 100644 --- a/arch/powerpc/sysdev/mv64x60_pci.c +++ b/arch/powerpc/sysdev/mv64x60_pci.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/stddef.h> | 12 | #include <linux/stddef.h> |
13 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/stat.h> | ||
15 | #include <linux/pci.h> | 16 | #include <linux/pci.h> |
16 | 17 | ||
17 | #include <asm/prom.h> | 18 | #include <asm/prom.h> |
diff --git a/arch/powerpc/sysdev/pmi.c b/arch/powerpc/sysdev/pmi.c index 8ce4fc3d9828..8f0465422b1e 100644 --- a/arch/powerpc/sysdev/pmi.c +++ b/arch/powerpc/sysdev/pmi.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <linux/slab.h> | 28 | #include <linux/slab.h> |
29 | #include <linux/completion.h> | 29 | #include <linux/completion.h> |
30 | #include <linux/spinlock.h> | 30 | #include <linux/spinlock.h> |
31 | #include <linux/module.h> | ||
31 | #include <linux/workqueue.h> | 32 | #include <linux/workqueue.h> |
32 | #include <linux/of_device.h> | 33 | #include <linux/of_device.h> |
33 | #include <linux/of_platform.h> | 34 | #include <linux/of_platform.h> |
diff --git a/arch/powerpc/sysdev/ppc4xx_msi.c b/arch/powerpc/sysdev/ppc4xx_msi.c index 367af0241851..1c2d7af17bbe 100644 --- a/arch/powerpc/sysdev/ppc4xx_msi.c +++ b/arch/powerpc/sysdev/ppc4xx_msi.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/msi.h> | 27 | #include <linux/msi.h> |
28 | #include <linux/of_platform.h> | 28 | #include <linux/of_platform.h> |
29 | #include <linux/interrupt.h> | 29 | #include <linux/interrupt.h> |
30 | #include <linux/export.h> | ||
30 | #include <asm/prom.h> | 31 | #include <asm/prom.h> |
31 | #include <asm/hw_irq.h> | 32 | #include <asm/hw_irq.h> |
32 | #include <asm/ppc-pci.h> | 33 | #include <asm/ppc-pci.h> |
diff --git a/arch/powerpc/sysdev/ppc4xx_pci.c b/arch/powerpc/sysdev/ppc4xx_pci.c index dbfe96bc878a..862f11b3821e 100644 --- a/arch/powerpc/sysdev/ppc4xx_pci.c +++ b/arch/powerpc/sysdev/ppc4xx_pci.c | |||
@@ -834,7 +834,7 @@ static int __init ppc440spe_pciex_core_init(struct device_node *np) | |||
834 | return 3; | 834 | return 3; |
835 | } | 835 | } |
836 | 836 | ||
837 | static int ppc440spe_pciex_init_port_hw(struct ppc4xx_pciex_port *port) | 837 | static int __init ppc440spe_pciex_init_port_hw(struct ppc4xx_pciex_port *port) |
838 | { | 838 | { |
839 | u32 val = 1 << 24; | 839 | u32 val = 1 << 24; |
840 | 840 | ||
@@ -872,12 +872,12 @@ static int ppc440spe_pciex_init_port_hw(struct ppc4xx_pciex_port *port) | |||
872 | return ppc4xx_pciex_port_reset_sdr(port); | 872 | return ppc4xx_pciex_port_reset_sdr(port); |
873 | } | 873 | } |
874 | 874 | ||
875 | static int ppc440speA_pciex_init_port_hw(struct ppc4xx_pciex_port *port) | 875 | static int __init ppc440speA_pciex_init_port_hw(struct ppc4xx_pciex_port *port) |
876 | { | 876 | { |
877 | return ppc440spe_pciex_init_port_hw(port); | 877 | return ppc440spe_pciex_init_port_hw(port); |
878 | } | 878 | } |
879 | 879 | ||
880 | static int ppc440speB_pciex_init_port_hw(struct ppc4xx_pciex_port *port) | 880 | static int __init ppc440speB_pciex_init_port_hw(struct ppc4xx_pciex_port *port) |
881 | { | 881 | { |
882 | int rc = ppc440spe_pciex_init_port_hw(port); | 882 | int rc = ppc440spe_pciex_init_port_hw(port); |
883 | 883 | ||
@@ -936,7 +936,7 @@ static int __init ppc460ex_pciex_core_init(struct device_node *np) | |||
936 | return 2; | 936 | return 2; |
937 | } | 937 | } |
938 | 938 | ||
939 | static int ppc460ex_pciex_init_port_hw(struct ppc4xx_pciex_port *port) | 939 | static int __init ppc460ex_pciex_init_port_hw(struct ppc4xx_pciex_port *port) |
940 | { | 940 | { |
941 | u32 val; | 941 | u32 val; |
942 | u32 utlset1; | 942 | u32 utlset1; |
@@ -1092,6 +1092,10 @@ static int __init ppc460sx_pciex_core_init(struct device_node *np) | |||
1092 | mtdcri(SDR0, PESDR1_460SX_HSSSLEW, 0xFFFF0000); | 1092 | mtdcri(SDR0, PESDR1_460SX_HSSSLEW, 0xFFFF0000); |
1093 | mtdcri(SDR0, PESDR2_460SX_HSSSLEW, 0xFFFF0000); | 1093 | mtdcri(SDR0, PESDR2_460SX_HSSSLEW, 0xFFFF0000); |
1094 | 1094 | ||
1095 | /* Set HSS PRBS enabled */ | ||
1096 | mtdcri(SDR0, PESDR0_460SX_HSSCTLSET, 0x00001130); | ||
1097 | mtdcri(SDR0, PESDR2_460SX_HSSCTLSET, 0x00001130); | ||
1098 | |||
1095 | udelay(100); | 1099 | udelay(100); |
1096 | 1100 | ||
1097 | /* De-assert PLLRESET */ | 1101 | /* De-assert PLLRESET */ |
@@ -1122,7 +1126,7 @@ static int __init ppc460sx_pciex_core_init(struct device_node *np) | |||
1122 | return 2; | 1126 | return 2; |
1123 | } | 1127 | } |
1124 | 1128 | ||
1125 | static int ppc460sx_pciex_init_port_hw(struct ppc4xx_pciex_port *port) | 1129 | static int __init ppc460sx_pciex_init_port_hw(struct ppc4xx_pciex_port *port) |
1126 | { | 1130 | { |
1127 | 1131 | ||
1128 | if (port->endpoint) | 1132 | if (port->endpoint) |
@@ -1132,9 +1136,6 @@ static int ppc460sx_pciex_init_port_hw(struct ppc4xx_pciex_port *port) | |||
1132 | dcri_clrset(SDR0, port->sdr_base + PESDRn_UTLSET2, | 1136 | dcri_clrset(SDR0, port->sdr_base + PESDRn_UTLSET2, |
1133 | 0, 0x01000000); | 1137 | 0, 0x01000000); |
1134 | 1138 | ||
1135 | /*Gen-1*/ | ||
1136 | mtdcri(SDR0, port->sdr_base + PESDRn_460SX_RCEI, 0x08000000); | ||
1137 | |||
1138 | dcri_clrset(SDR0, port->sdr_base + PESDRn_RCSSET, | 1139 | dcri_clrset(SDR0, port->sdr_base + PESDRn_RCSSET, |
1139 | (PESDRx_RCSSET_RSTGU | PESDRx_RCSSET_RSTDL), | 1140 | (PESDRx_RCSSET_RSTGU | PESDRx_RCSSET_RSTDL), |
1140 | PESDRx_RCSSET_RSTPYN); | 1141 | PESDRx_RCSSET_RSTPYN); |
@@ -1148,14 +1149,42 @@ static int ppc460sx_pciex_init_utl(struct ppc4xx_pciex_port *port) | |||
1148 | { | 1149 | { |
1149 | /* Max 128 Bytes */ | 1150 | /* Max 128 Bytes */ |
1150 | out_be32 (port->utl_base + PEUTL_PBBSZ, 0x00000000); | 1151 | out_be32 (port->utl_base + PEUTL_PBBSZ, 0x00000000); |
1152 | /* Assert VRB and TXE - per datasheet turn off addr validation */ | ||
1153 | out_be32(port->utl_base + PEUTL_PCTL, 0x80800000); | ||
1151 | return 0; | 1154 | return 0; |
1152 | } | 1155 | } |
1153 | 1156 | ||
1157 | static void __init ppc460sx_pciex_check_link(struct ppc4xx_pciex_port *port) | ||
1158 | { | ||
1159 | void __iomem *mbase; | ||
1160 | int attempt = 50; | ||
1161 | |||
1162 | port->link = 0; | ||
1163 | |||
1164 | mbase = ioremap(port->cfg_space.start + 0x10000000, 0x1000); | ||
1165 | if (mbase == NULL) { | ||
1166 | printk(KERN_ERR "%s: Can't map internal config space !", | ||
1167 | port->node->full_name); | ||
1168 | goto done; | ||
1169 | } | ||
1170 | |||
1171 | while (attempt && (0 == (in_le32(mbase + PECFG_460SX_DLLSTA) | ||
1172 | & PECFG_460SX_DLLSTA_LINKUP))) { | ||
1173 | attempt--; | ||
1174 | mdelay(10); | ||
1175 | } | ||
1176 | if (attempt) | ||
1177 | port->link = 1; | ||
1178 | done: | ||
1179 | iounmap(mbase); | ||
1180 | |||
1181 | } | ||
1182 | |||
1154 | static struct ppc4xx_pciex_hwops ppc460sx_pcie_hwops __initdata = { | 1183 | static struct ppc4xx_pciex_hwops ppc460sx_pcie_hwops __initdata = { |
1155 | .core_init = ppc460sx_pciex_core_init, | 1184 | .core_init = ppc460sx_pciex_core_init, |
1156 | .port_init_hw = ppc460sx_pciex_init_port_hw, | 1185 | .port_init_hw = ppc460sx_pciex_init_port_hw, |
1157 | .setup_utl = ppc460sx_pciex_init_utl, | 1186 | .setup_utl = ppc460sx_pciex_init_utl, |
1158 | .check_link = ppc4xx_pciex_check_link_sdr, | 1187 | .check_link = ppc460sx_pciex_check_link, |
1159 | }; | 1188 | }; |
1160 | 1189 | ||
1161 | #endif /* CONFIG_44x */ | 1190 | #endif /* CONFIG_44x */ |
@@ -1189,7 +1218,7 @@ static void ppc405ex_pcie_phy_reset(struct ppc4xx_pciex_port *port) | |||
1189 | mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET, 0x00101000); | 1218 | mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET, 0x00101000); |
1190 | } | 1219 | } |
1191 | 1220 | ||
1192 | static int ppc405ex_pciex_init_port_hw(struct ppc4xx_pciex_port *port) | 1221 | static int __init ppc405ex_pciex_init_port_hw(struct ppc4xx_pciex_port *port) |
1193 | { | 1222 | { |
1194 | u32 val; | 1223 | u32 val; |
1195 | 1224 | ||
@@ -1338,15 +1367,15 @@ static int __init ppc4xx_pciex_port_init(struct ppc4xx_pciex_port *port) | |||
1338 | if (rc != 0) | 1367 | if (rc != 0) |
1339 | return rc; | 1368 | return rc; |
1340 | 1369 | ||
1341 | if (ppc4xx_pciex_hwops->check_link) | ||
1342 | ppc4xx_pciex_hwops->check_link(port); | ||
1343 | |||
1344 | /* | 1370 | /* |
1345 | * Initialize mapping: disable all regions and configure | 1371 | * Initialize mapping: disable all regions and configure |
1346 | * CFG and REG regions based on resources in the device tree | 1372 | * CFG and REG regions based on resources in the device tree |
1347 | */ | 1373 | */ |
1348 | ppc4xx_pciex_port_init_mapping(port); | 1374 | ppc4xx_pciex_port_init_mapping(port); |
1349 | 1375 | ||
1376 | if (ppc4xx_pciex_hwops->check_link) | ||
1377 | ppc4xx_pciex_hwops->check_link(port); | ||
1378 | |||
1350 | /* | 1379 | /* |
1351 | * Map UTL | 1380 | * Map UTL |
1352 | */ | 1381 | */ |
@@ -1360,13 +1389,23 @@ static int __init ppc4xx_pciex_port_init(struct ppc4xx_pciex_port *port) | |||
1360 | ppc4xx_pciex_hwops->setup_utl(port); | 1389 | ppc4xx_pciex_hwops->setup_utl(port); |
1361 | 1390 | ||
1362 | /* | 1391 | /* |
1363 | * Check for VC0 active and assert RDY. | 1392 | * Check for VC0 active or PLL Locked and assert RDY. |
1364 | */ | 1393 | */ |
1365 | if (port->sdr_base) { | 1394 | if (port->sdr_base) { |
1366 | if (port->link && | 1395 | if (of_device_is_compatible(port->node, |
1367 | ppc4xx_pciex_wait_on_sdr(port, PESDRn_RCSSTS, | 1396 | "ibm,plb-pciex-460sx")){ |
1368 | 1 << 16, 1 << 16, 5000)) { | 1397 | if (port->link && ppc4xx_pciex_wait_on_sdr(port, |
1369 | printk(KERN_INFO "PCIE%d: VC0 not active\n", port->index); | 1398 | PESDRn_RCSSTS, |
1399 | 1 << 12, 1 << 12, 5000)) { | ||
1400 | printk(KERN_INFO "PCIE%d: PLL not locked\n", | ||
1401 | port->index); | ||
1402 | port->link = 0; | ||
1403 | } | ||
1404 | } else if (port->link && | ||
1405 | ppc4xx_pciex_wait_on_sdr(port, PESDRn_RCSSTS, | ||
1406 | 1 << 16, 1 << 16, 5000)) { | ||
1407 | printk(KERN_INFO "PCIE%d: VC0 not active\n", | ||
1408 | port->index); | ||
1370 | port->link = 0; | 1409 | port->link = 0; |
1371 | } | 1410 | } |
1372 | 1411 | ||
@@ -1573,8 +1612,15 @@ static int __init ppc4xx_setup_one_pciex_POM(struct ppc4xx_pciex_port *port, | |||
1573 | dcr_write(port->dcrs, DCRO_PEGPL_OMR1BAH, lah); | 1612 | dcr_write(port->dcrs, DCRO_PEGPL_OMR1BAH, lah); |
1574 | dcr_write(port->dcrs, DCRO_PEGPL_OMR1BAL, lal); | 1613 | dcr_write(port->dcrs, DCRO_PEGPL_OMR1BAL, lal); |
1575 | dcr_write(port->dcrs, DCRO_PEGPL_OMR1MSKH, 0x7fffffff); | 1614 | dcr_write(port->dcrs, DCRO_PEGPL_OMR1MSKH, 0x7fffffff); |
1576 | /* Note that 3 here means enabled | single region */ | 1615 | /*Enabled and single region */ |
1577 | dcr_write(port->dcrs, DCRO_PEGPL_OMR1MSKL, sa | 3); | 1616 | if (of_device_is_compatible(port->node, "ibm,plb-pciex-460sx")) |
1617 | dcr_write(port->dcrs, DCRO_PEGPL_OMR1MSKL, | ||
1618 | sa | DCRO_PEGPL_460SX_OMR1MSKL_UOT | ||
1619 | | DCRO_PEGPL_OMRxMSKL_VAL); | ||
1620 | else | ||
1621 | dcr_write(port->dcrs, DCRO_PEGPL_OMR1MSKL, | ||
1622 | sa | DCRO_PEGPL_OMR1MSKL_UOT | ||
1623 | | DCRO_PEGPL_OMRxMSKL_VAL); | ||
1578 | break; | 1624 | break; |
1579 | case 1: | 1625 | case 1: |
1580 | out_le32(mbase + PECFG_POM1LAH, pciah); | 1626 | out_le32(mbase + PECFG_POM1LAH, pciah); |
@@ -1582,8 +1628,8 @@ static int __init ppc4xx_setup_one_pciex_POM(struct ppc4xx_pciex_port *port, | |||
1582 | dcr_write(port->dcrs, DCRO_PEGPL_OMR2BAH, lah); | 1628 | dcr_write(port->dcrs, DCRO_PEGPL_OMR2BAH, lah); |
1583 | dcr_write(port->dcrs, DCRO_PEGPL_OMR2BAL, lal); | 1629 | dcr_write(port->dcrs, DCRO_PEGPL_OMR2BAL, lal); |
1584 | dcr_write(port->dcrs, DCRO_PEGPL_OMR2MSKH, 0x7fffffff); | 1630 | dcr_write(port->dcrs, DCRO_PEGPL_OMR2MSKH, 0x7fffffff); |
1585 | /* Note that 3 here means enabled | single region */ | 1631 | dcr_write(port->dcrs, DCRO_PEGPL_OMR2MSKL, |
1586 | dcr_write(port->dcrs, DCRO_PEGPL_OMR2MSKL, sa | 3); | 1632 | sa | DCRO_PEGPL_OMRxMSKL_VAL); |
1587 | break; | 1633 | break; |
1588 | case 2: | 1634 | case 2: |
1589 | out_le32(mbase + PECFG_POM2LAH, pciah); | 1635 | out_le32(mbase + PECFG_POM2LAH, pciah); |
@@ -1592,7 +1638,9 @@ static int __init ppc4xx_setup_one_pciex_POM(struct ppc4xx_pciex_port *port, | |||
1592 | dcr_write(port->dcrs, DCRO_PEGPL_OMR3BAL, lal); | 1638 | dcr_write(port->dcrs, DCRO_PEGPL_OMR3BAL, lal); |
1593 | dcr_write(port->dcrs, DCRO_PEGPL_OMR3MSKH, 0x7fffffff); | 1639 | dcr_write(port->dcrs, DCRO_PEGPL_OMR3MSKH, 0x7fffffff); |
1594 | /* Note that 3 here means enabled | IO space !!! */ | 1640 | /* Note that 3 here means enabled | IO space !!! */ |
1595 | dcr_write(port->dcrs, DCRO_PEGPL_OMR3MSKL, sa | 3); | 1641 | dcr_write(port->dcrs, DCRO_PEGPL_OMR3MSKL, |
1642 | sa | DCRO_PEGPL_OMR3MSKL_IO | ||
1643 | | DCRO_PEGPL_OMRxMSKL_VAL); | ||
1596 | break; | 1644 | break; |
1597 | } | 1645 | } |
1598 | 1646 | ||
@@ -1693,6 +1741,9 @@ static void __init ppc4xx_configure_pciex_PIMs(struct ppc4xx_pciex_port *port, | |||
1693 | if (res->flags & IORESOURCE_PREFETCH) | 1741 | if (res->flags & IORESOURCE_PREFETCH) |
1694 | sa |= 0x8; | 1742 | sa |= 0x8; |
1695 | 1743 | ||
1744 | if (of_device_is_compatible(port->node, "ibm,plb-pciex-460sx")) | ||
1745 | sa |= PCI_BASE_ADDRESS_MEM_TYPE_64; | ||
1746 | |||
1696 | out_le32(mbase + PECFG_BAR0HMPA, RES_TO_U32_HIGH(sa)); | 1747 | out_le32(mbase + PECFG_BAR0HMPA, RES_TO_U32_HIGH(sa)); |
1697 | out_le32(mbase + PECFG_BAR0LMPA, RES_TO_U32_LOW(sa)); | 1748 | out_le32(mbase + PECFG_BAR0LMPA, RES_TO_U32_LOW(sa)); |
1698 | 1749 | ||
@@ -1854,6 +1905,10 @@ static void __init ppc4xx_pciex_port_setup_hose(struct ppc4xx_pciex_port *port) | |||
1854 | } | 1905 | } |
1855 | out_le16(mbase + 0x202, val); | 1906 | out_le16(mbase + 0x202, val); |
1856 | 1907 | ||
1908 | /* Enable Bus master, memory, and io space */ | ||
1909 | if (of_device_is_compatible(port->node, "ibm,plb-pciex-460sx")) | ||
1910 | out_le16(mbase + 0x204, 0x7); | ||
1911 | |||
1857 | if (!port->endpoint) { | 1912 | if (!port->endpoint) { |
1858 | /* Set Class Code to PCI-PCI bridge and Revision Id to 1 */ | 1913 | /* Set Class Code to PCI-PCI bridge and Revision Id to 1 */ |
1859 | out_le32(mbase + 0x208, 0x06040001); | 1914 | out_le32(mbase + 0x208, 0x06040001); |
diff --git a/arch/powerpc/sysdev/ppc4xx_pci.h b/arch/powerpc/sysdev/ppc4xx_pci.h index c39a134e8684..32ce763a375a 100644 --- a/arch/powerpc/sysdev/ppc4xx_pci.h +++ b/arch/powerpc/sysdev/ppc4xx_pci.h | |||
@@ -464,6 +464,18 @@ | |||
464 | #define PECFG_POM2LAL 0x390 | 464 | #define PECFG_POM2LAL 0x390 |
465 | #define PECFG_POM2LAH 0x394 | 465 | #define PECFG_POM2LAH 0x394 |
466 | 466 | ||
467 | /* 460sx only */ | ||
468 | #define PECFG_460SX_DLLSTA 0x3f8 | ||
469 | |||
470 | /* 460sx Bit Mappings */ | ||
471 | #define PECFG_460SX_DLLSTA_LINKUP 0x00000010 | ||
472 | #define DCRO_PEGPL_460SX_OMR1MSKL_UOT 0x00000004 | ||
473 | |||
474 | /* PEGPL Bit Mappings */ | ||
475 | #define DCRO_PEGPL_OMRxMSKL_VAL 0x00000001 | ||
476 | #define DCRO_PEGPL_OMR1MSKL_UOT 0x00000002 | ||
477 | #define DCRO_PEGPL_OMR3MSKL_IO 0x00000002 | ||
478 | |||
467 | /* SDR Bit Mappings */ | 479 | /* SDR Bit Mappings */ |
468 | #define PESDRx_RCSSET_HLDPLB 0x10000000 | 480 | #define PESDRx_RCSSET_HLDPLB 0x10000000 |
469 | #define PESDRx_RCSSET_RSTGU 0x01000000 | 481 | #define PESDRx_RCSSET_RSTGU 0x01000000 |
diff --git a/arch/powerpc/sysdev/ppc4xx_soc.c b/arch/powerpc/sysdev/ppc4xx_soc.c index d3d6ce3c33b4..0debcc31ad70 100644 --- a/arch/powerpc/sysdev/ppc4xx_soc.c +++ b/arch/powerpc/sysdev/ppc4xx_soc.c | |||
@@ -115,7 +115,7 @@ static int __init ppc4xx_l2c_probe(void) | |||
115 | } | 115 | } |
116 | 116 | ||
117 | /* Install error handler */ | 117 | /* Install error handler */ |
118 | if (request_irq(irq, l2c_error_handler, IRQF_DISABLED, "L2C", 0) < 0) { | 118 | if (request_irq(irq, l2c_error_handler, 0, "L2C", 0) < 0) { |
119 | printk(KERN_ERR "Cannot install L2C error handler" | 119 | printk(KERN_ERR "Cannot install L2C error handler" |
120 | ", cache is not enabled\n"); | 120 | ", cache is not enabled\n"); |
121 | of_node_put(np); | 121 | of_node_put(np); |
diff --git a/arch/powerpc/sysdev/qe_lib/gpio.c b/arch/powerpc/sysdev/qe_lib/gpio.c index 36bf845df127..e23f23cf9f5c 100644 --- a/arch/powerpc/sysdev/qe_lib/gpio.c +++ b/arch/powerpc/sysdev/qe_lib/gpio.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/of_gpio.h> | 20 | #include <linux/of_gpio.h> |
21 | #include <linux/gpio.h> | 21 | #include <linux/gpio.h> |
22 | #include <linux/slab.h> | 22 | #include <linux/slab.h> |
23 | #include <linux/export.h> | ||
23 | #include <asm/qe.h> | 24 | #include <asm/qe.h> |
24 | 25 | ||
25 | struct qe_gpio_chip { | 26 | struct qe_gpio_chip { |
diff --git a/arch/powerpc/sysdev/qe_lib/ucc.c b/arch/powerpc/sysdev/qe_lib/ucc.c index fa589b21dbcd..04677505f20f 100644 --- a/arch/powerpc/sysdev/qe_lib/ucc.c +++ b/arch/powerpc/sysdev/qe_lib/ucc.c | |||
@@ -18,7 +18,7 @@ | |||
18 | #include <linux/errno.h> | 18 | #include <linux/errno.h> |
19 | #include <linux/stddef.h> | 19 | #include <linux/stddef.h> |
20 | #include <linux/spinlock.h> | 20 | #include <linux/spinlock.h> |
21 | #include <linux/module.h> | 21 | #include <linux/export.h> |
22 | 22 | ||
23 | #include <asm/irq.h> | 23 | #include <asm/irq.h> |
24 | #include <asm/io.h> | 24 | #include <asm/io.h> |
diff --git a/arch/powerpc/sysdev/qe_lib/ucc_fast.c b/arch/powerpc/sysdev/qe_lib/ucc_fast.c index 25fbbfaa837d..fba02440d122 100644 --- a/arch/powerpc/sysdev/qe_lib/ucc_fast.c +++ b/arch/powerpc/sysdev/qe_lib/ucc_fast.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include <linux/stddef.h> | 19 | #include <linux/stddef.h> |
20 | #include <linux/interrupt.h> | 20 | #include <linux/interrupt.h> |
21 | #include <linux/err.h> | 21 | #include <linux/err.h> |
22 | #include <linux/module.h> | 22 | #include <linux/export.h> |
23 | 23 | ||
24 | #include <asm/io.h> | 24 | #include <asm/io.h> |
25 | #include <asm/immap_qe.h> | 25 | #include <asm/immap_qe.h> |
diff --git a/arch/powerpc/sysdev/qe_lib/ucc_slow.c b/arch/powerpc/sysdev/qe_lib/ucc_slow.c index e1d6a1340157..524c0ead941d 100644 --- a/arch/powerpc/sysdev/qe_lib/ucc_slow.c +++ b/arch/powerpc/sysdev/qe_lib/ucc_slow.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include <linux/stddef.h> | 19 | #include <linux/stddef.h> |
20 | #include <linux/interrupt.h> | 20 | #include <linux/interrupt.h> |
21 | #include <linux/err.h> | 21 | #include <linux/err.h> |
22 | #include <linux/module.h> | 22 | #include <linux/export.h> |
23 | 23 | ||
24 | #include <asm/io.h> | 24 | #include <asm/io.h> |
25 | #include <asm/immap_qe.h> | 25 | #include <asm/immap_qe.h> |
diff --git a/arch/powerpc/sysdev/qe_lib/usb.c b/arch/powerpc/sysdev/qe_lib/usb.c index 8105462078eb..9162828f5da7 100644 --- a/arch/powerpc/sysdev/qe_lib/usb.c +++ b/arch/powerpc/sysdev/qe_lib/usb.c | |||
@@ -15,6 +15,7 @@ | |||
15 | 15 | ||
16 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
17 | #include <linux/errno.h> | 17 | #include <linux/errno.h> |
18 | #include <linux/export.h> | ||
18 | #include <linux/io.h> | 19 | #include <linux/io.h> |
19 | #include <asm/immap_qe.h> | 20 | #include <asm/immap_qe.h> |
20 | #include <asm/qe.h> | 21 | #include <asm/qe.h> |
diff --git a/arch/powerpc/sysdev/rtc_cmos_setup.c b/arch/powerpc/sysdev/rtc_cmos_setup.c index c1879ebfd4f4..9afba924e94f 100644 --- a/arch/powerpc/sysdev/rtc_cmos_setup.c +++ b/arch/powerpc/sysdev/rtc_cmos_setup.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/platform_device.h> | 12 | #include <linux/platform_device.h> |
13 | #include <linux/err.h> | 13 | #include <linux/err.h> |
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/module.h> | ||
15 | #include <linux/mc146818rtc.h> | 16 | #include <linux/mc146818rtc.h> |
16 | 17 | ||
17 | #include <asm/prom.h> | 18 | #include <asm/prom.h> |
diff --git a/arch/powerpc/sysdev/scom.c b/arch/powerpc/sysdev/scom.c index b2593ce30c9b..49a3ece1c6b3 100644 --- a/arch/powerpc/sysdev/scom.c +++ b/arch/powerpc/sysdev/scom.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/kernel.h> | 21 | #include <linux/kernel.h> |
22 | #include <linux/debugfs.h> | 22 | #include <linux/debugfs.h> |
23 | #include <linux/slab.h> | 23 | #include <linux/slab.h> |
24 | #include <linux/export.h> | ||
24 | #include <asm/prom.h> | 25 | #include <asm/prom.h> |
25 | #include <asm/scom.h> | 26 | #include <asm/scom.h> |
26 | 27 | ||
diff --git a/arch/powerpc/sysdev/simple_gpio.c b/arch/powerpc/sysdev/simple_gpio.c index b6defda5ccc9..ff5e73230a36 100644 --- a/arch/powerpc/sysdev/simple_gpio.c +++ b/arch/powerpc/sysdev/simple_gpio.c | |||
@@ -13,7 +13,6 @@ | |||
13 | 13 | ||
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
16 | #include <linux/module.h> | ||
17 | #include <linux/spinlock.h> | 16 | #include <linux/spinlock.h> |
18 | #include <linux/types.h> | 17 | #include <linux/types.h> |
19 | #include <linux/ioport.h> | 18 | #include <linux/ioport.h> |
diff --git a/arch/powerpc/sysdev/tsi108_dev.c b/arch/powerpc/sysdev/tsi108_dev.c index 9f51f97abb5d..2370e1c63379 100644 --- a/arch/powerpc/sysdev/tsi108_dev.c +++ b/arch/powerpc/sysdev/tsi108_dev.c | |||
@@ -16,7 +16,7 @@ | |||
16 | #include <linux/major.h> | 16 | #include <linux/major.h> |
17 | #include <linux/delay.h> | 17 | #include <linux/delay.h> |
18 | #include <linux/irq.h> | 18 | #include <linux/irq.h> |
19 | #include <linux/module.h> | 19 | #include <linux/export.h> |
20 | #include <linux/device.h> | 20 | #include <linux/device.h> |
21 | #include <linux/platform_device.h> | 21 | #include <linux/platform_device.h> |
22 | #include <linux/of_net.h> | 22 | #include <linux/of_net.h> |
diff --git a/arch/powerpc/sysdev/uic.c b/arch/powerpc/sysdev/uic.c index 984cd2029158..3330feca7502 100644 --- a/arch/powerpc/sysdev/uic.c +++ b/arch/powerpc/sysdev/uic.c | |||
@@ -47,7 +47,7 @@ struct uic { | |||
47 | int index; | 47 | int index; |
48 | int dcrbase; | 48 | int dcrbase; |
49 | 49 | ||
50 | spinlock_t lock; | 50 | raw_spinlock_t lock; |
51 | 51 | ||
52 | /* The remapper for this UIC */ | 52 | /* The remapper for this UIC */ |
53 | struct irq_host *irqhost; | 53 | struct irq_host *irqhost; |
@@ -61,14 +61,14 @@ static void uic_unmask_irq(struct irq_data *d) | |||
61 | u32 er, sr; | 61 | u32 er, sr; |
62 | 62 | ||
63 | sr = 1 << (31-src); | 63 | sr = 1 << (31-src); |
64 | spin_lock_irqsave(&uic->lock, flags); | 64 | raw_spin_lock_irqsave(&uic->lock, flags); |
65 | /* ack level-triggered interrupts here */ | 65 | /* ack level-triggered interrupts here */ |
66 | if (irqd_is_level_type(d)) | 66 | if (irqd_is_level_type(d)) |
67 | mtdcr(uic->dcrbase + UIC_SR, sr); | 67 | mtdcr(uic->dcrbase + UIC_SR, sr); |
68 | er = mfdcr(uic->dcrbase + UIC_ER); | 68 | er = mfdcr(uic->dcrbase + UIC_ER); |
69 | er |= sr; | 69 | er |= sr; |
70 | mtdcr(uic->dcrbase + UIC_ER, er); | 70 | mtdcr(uic->dcrbase + UIC_ER, er); |
71 | spin_unlock_irqrestore(&uic->lock, flags); | 71 | raw_spin_unlock_irqrestore(&uic->lock, flags); |
72 | } | 72 | } |
73 | 73 | ||
74 | static void uic_mask_irq(struct irq_data *d) | 74 | static void uic_mask_irq(struct irq_data *d) |
@@ -78,11 +78,11 @@ static void uic_mask_irq(struct irq_data *d) | |||
78 | unsigned long flags; | 78 | unsigned long flags; |
79 | u32 er; | 79 | u32 er; |
80 | 80 | ||
81 | spin_lock_irqsave(&uic->lock, flags); | 81 | raw_spin_lock_irqsave(&uic->lock, flags); |
82 | er = mfdcr(uic->dcrbase + UIC_ER); | 82 | er = mfdcr(uic->dcrbase + UIC_ER); |
83 | er &= ~(1 << (31 - src)); | 83 | er &= ~(1 << (31 - src)); |
84 | mtdcr(uic->dcrbase + UIC_ER, er); | 84 | mtdcr(uic->dcrbase + UIC_ER, er); |
85 | spin_unlock_irqrestore(&uic->lock, flags); | 85 | raw_spin_unlock_irqrestore(&uic->lock, flags); |
86 | } | 86 | } |
87 | 87 | ||
88 | static void uic_ack_irq(struct irq_data *d) | 88 | static void uic_ack_irq(struct irq_data *d) |
@@ -91,9 +91,9 @@ static void uic_ack_irq(struct irq_data *d) | |||
91 | unsigned int src = irqd_to_hwirq(d); | 91 | unsigned int src = irqd_to_hwirq(d); |
92 | unsigned long flags; | 92 | unsigned long flags; |
93 | 93 | ||
94 | spin_lock_irqsave(&uic->lock, flags); | 94 | raw_spin_lock_irqsave(&uic->lock, flags); |
95 | mtdcr(uic->dcrbase + UIC_SR, 1 << (31-src)); | 95 | mtdcr(uic->dcrbase + UIC_SR, 1 << (31-src)); |
96 | spin_unlock_irqrestore(&uic->lock, flags); | 96 | raw_spin_unlock_irqrestore(&uic->lock, flags); |
97 | } | 97 | } |
98 | 98 | ||
99 | static void uic_mask_ack_irq(struct irq_data *d) | 99 | static void uic_mask_ack_irq(struct irq_data *d) |
@@ -104,7 +104,7 @@ static void uic_mask_ack_irq(struct irq_data *d) | |||
104 | u32 er, sr; | 104 | u32 er, sr; |
105 | 105 | ||
106 | sr = 1 << (31-src); | 106 | sr = 1 << (31-src); |
107 | spin_lock_irqsave(&uic->lock, flags); | 107 | raw_spin_lock_irqsave(&uic->lock, flags); |
108 | er = mfdcr(uic->dcrbase + UIC_ER); | 108 | er = mfdcr(uic->dcrbase + UIC_ER); |
109 | er &= ~sr; | 109 | er &= ~sr; |
110 | mtdcr(uic->dcrbase + UIC_ER, er); | 110 | mtdcr(uic->dcrbase + UIC_ER, er); |
@@ -118,7 +118,7 @@ static void uic_mask_ack_irq(struct irq_data *d) | |||
118 | */ | 118 | */ |
119 | if (!irqd_is_level_type(d)) | 119 | if (!irqd_is_level_type(d)) |
120 | mtdcr(uic->dcrbase + UIC_SR, sr); | 120 | mtdcr(uic->dcrbase + UIC_SR, sr); |
121 | spin_unlock_irqrestore(&uic->lock, flags); | 121 | raw_spin_unlock_irqrestore(&uic->lock, flags); |
122 | } | 122 | } |
123 | 123 | ||
124 | static int uic_set_irq_type(struct irq_data *d, unsigned int flow_type) | 124 | static int uic_set_irq_type(struct irq_data *d, unsigned int flow_type) |
@@ -152,7 +152,7 @@ static int uic_set_irq_type(struct irq_data *d, unsigned int flow_type) | |||
152 | 152 | ||
153 | mask = ~(1 << (31 - src)); | 153 | mask = ~(1 << (31 - src)); |
154 | 154 | ||
155 | spin_lock_irqsave(&uic->lock, flags); | 155 | raw_spin_lock_irqsave(&uic->lock, flags); |
156 | tr = mfdcr(uic->dcrbase + UIC_TR); | 156 | tr = mfdcr(uic->dcrbase + UIC_TR); |
157 | pr = mfdcr(uic->dcrbase + UIC_PR); | 157 | pr = mfdcr(uic->dcrbase + UIC_PR); |
158 | tr = (tr & mask) | (trigger << (31-src)); | 158 | tr = (tr & mask) | (trigger << (31-src)); |
@@ -161,7 +161,7 @@ static int uic_set_irq_type(struct irq_data *d, unsigned int flow_type) | |||
161 | mtdcr(uic->dcrbase + UIC_PR, pr); | 161 | mtdcr(uic->dcrbase + UIC_PR, pr); |
162 | mtdcr(uic->dcrbase + UIC_TR, tr); | 162 | mtdcr(uic->dcrbase + UIC_TR, tr); |
163 | 163 | ||
164 | spin_unlock_irqrestore(&uic->lock, flags); | 164 | raw_spin_unlock_irqrestore(&uic->lock, flags); |
165 | 165 | ||
166 | return 0; | 166 | return 0; |
167 | } | 167 | } |
@@ -254,7 +254,7 @@ static struct uic * __init uic_init_one(struct device_node *node) | |||
254 | if (! uic) | 254 | if (! uic) |
255 | return NULL; /* FIXME: panic? */ | 255 | return NULL; /* FIXME: panic? */ |
256 | 256 | ||
257 | spin_lock_init(&uic->lock); | 257 | raw_spin_lock_init(&uic->lock); |
258 | indexp = of_get_property(node, "cell-index", &len); | 258 | indexp = of_get_property(node, "cell-index", &len); |
259 | if (!indexp || (len != sizeof(u32))) { | 259 | if (!indexp || (len != sizeof(u32))) { |
260 | printk(KERN_ERR "uic: Device node %s has missing or invalid " | 260 | printk(KERN_ERR "uic: Device node %s has missing or invalid " |
diff --git a/arch/powerpc/sysdev/xics/Makefile b/arch/powerpc/sysdev/xics/Makefile index b75a6059337f..c606aa8ba60a 100644 --- a/arch/powerpc/sysdev/xics/Makefile +++ b/arch/powerpc/sysdev/xics/Makefile | |||
@@ -4,3 +4,4 @@ obj-y += xics-common.o | |||
4 | obj-$(CONFIG_PPC_ICP_NATIVE) += icp-native.o | 4 | obj-$(CONFIG_PPC_ICP_NATIVE) += icp-native.o |
5 | obj-$(CONFIG_PPC_ICP_HV) += icp-hv.o | 5 | obj-$(CONFIG_PPC_ICP_HV) += icp-hv.o |
6 | obj-$(CONFIG_PPC_ICS_RTAS) += ics-rtas.o | 6 | obj-$(CONFIG_PPC_ICS_RTAS) += ics-rtas.o |
7 | obj-$(CONFIG_PPC_POWERNV) += ics-opal.o | ||
diff --git a/arch/powerpc/sysdev/xics/icp-native.c b/arch/powerpc/sysdev/xics/icp-native.c index 50e32afe392e..4c79b6fbee1c 100644 --- a/arch/powerpc/sysdev/xics/icp-native.c +++ b/arch/powerpc/sysdev/xics/icp-native.c | |||
@@ -276,7 +276,7 @@ static const struct icp_ops icp_native_ops = { | |||
276 | #endif | 276 | #endif |
277 | }; | 277 | }; |
278 | 278 | ||
279 | int icp_native_init(void) | 279 | int __init icp_native_init(void) |
280 | { | 280 | { |
281 | struct device_node *np; | 281 | struct device_node *np; |
282 | u32 indx = 0; | 282 | u32 indx = 0; |
diff --git a/arch/powerpc/sysdev/xics/ics-opal.c b/arch/powerpc/sysdev/xics/ics-opal.c new file mode 100644 index 000000000000..f7e8609df0d5 --- /dev/null +++ b/arch/powerpc/sysdev/xics/ics-opal.c | |||
@@ -0,0 +1,244 @@ | |||
1 | /* | ||
2 | * ICS backend for OPAL managed interrupts. | ||
3 | * | ||
4 | * Copyright 2011 IBM Corp. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #undef DEBUG | ||
13 | |||
14 | #include <linux/types.h> | ||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/irq.h> | ||
17 | #include <linux/smp.h> | ||
18 | #include <linux/interrupt.h> | ||
19 | #include <linux/init.h> | ||
20 | #include <linux/cpu.h> | ||
21 | #include <linux/of.h> | ||
22 | #include <linux/spinlock.h> | ||
23 | #include <linux/msi.h> | ||
24 | |||
25 | #include <asm/prom.h> | ||
26 | #include <asm/smp.h> | ||
27 | #include <asm/machdep.h> | ||
28 | #include <asm/irq.h> | ||
29 | #include <asm/errno.h> | ||
30 | #include <asm/xics.h> | ||
31 | #include <asm/opal.h> | ||
32 | #include <asm/firmware.h> | ||
33 | |||
34 | static int ics_opal_mangle_server(int server) | ||
35 | { | ||
36 | /* No link for now */ | ||
37 | return server << 2; | ||
38 | } | ||
39 | |||
40 | static int ics_opal_unmangle_server(int server) | ||
41 | { | ||
42 | /* No link for now */ | ||
43 | return server >> 2; | ||
44 | } | ||
45 | |||
46 | static void ics_opal_unmask_irq(struct irq_data *d) | ||
47 | { | ||
48 | unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d); | ||
49 | int64_t rc; | ||
50 | int server; | ||
51 | |||
52 | pr_devel("ics-hal: unmask virq %d [hw 0x%x]\n", d->irq, hw_irq); | ||
53 | |||
54 | if (hw_irq == XICS_IPI || hw_irq == XICS_IRQ_SPURIOUS) | ||
55 | return; | ||
56 | |||
57 | server = xics_get_irq_server(d->irq, d->affinity, 0); | ||
58 | server = ics_opal_mangle_server(server); | ||
59 | |||
60 | rc = opal_set_xive(hw_irq, server, DEFAULT_PRIORITY); | ||
61 | if (rc != OPAL_SUCCESS) | ||
62 | pr_err("%s: opal_set_xive(irq=%d [hw 0x%x] server=%x)" | ||
63 | " error %lld\n", | ||
64 | __func__, d->irq, hw_irq, server, rc); | ||
65 | } | ||
66 | |||
67 | static unsigned int ics_opal_startup(struct irq_data *d) | ||
68 | { | ||
69 | #ifdef CONFIG_PCI_MSI | ||
70 | /* | ||
71 | * The generic MSI code returns with the interrupt disabled on the | ||
72 | * card, using the MSI mask bits. Firmware doesn't appear to unmask | ||
73 | * at that level, so we do it here by hand. | ||
74 | */ | ||
75 | if (d->msi_desc) | ||
76 | unmask_msi_irq(d); | ||
77 | #endif | ||
78 | |||
79 | /* unmask it */ | ||
80 | ics_opal_unmask_irq(d); | ||
81 | return 0; | ||
82 | } | ||
83 | |||
84 | static void ics_opal_mask_real_irq(unsigned int hw_irq) | ||
85 | { | ||
86 | int server = ics_opal_mangle_server(xics_default_server); | ||
87 | int64_t rc; | ||
88 | |||
89 | if (hw_irq == XICS_IPI) | ||
90 | return; | ||
91 | |||
92 | /* Have to set XIVE to 0xff to be able to remove a slot */ | ||
93 | rc = opal_set_xive(hw_irq, server, 0xff); | ||
94 | if (rc != OPAL_SUCCESS) | ||
95 | pr_err("%s: opal_set_xive(0xff) irq=%u returned %lld\n", | ||
96 | __func__, hw_irq, rc); | ||
97 | } | ||
98 | |||
99 | static void ics_opal_mask_irq(struct irq_data *d) | ||
100 | { | ||
101 | unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d); | ||
102 | |||
103 | pr_devel("ics-hal: mask virq %d [hw 0x%x]\n", d->irq, hw_irq); | ||
104 | |||
105 | if (hw_irq == XICS_IPI || hw_irq == XICS_IRQ_SPURIOUS) | ||
106 | return; | ||
107 | ics_opal_mask_real_irq(hw_irq); | ||
108 | } | ||
109 | |||
110 | static int ics_opal_set_affinity(struct irq_data *d, | ||
111 | const struct cpumask *cpumask, | ||
112 | bool force) | ||
113 | { | ||
114 | unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d); | ||
115 | int16_t server; | ||
116 | int8_t priority; | ||
117 | int64_t rc; | ||
118 | int wanted_server; | ||
119 | |||
120 | if (hw_irq == XICS_IPI || hw_irq == XICS_IRQ_SPURIOUS) | ||
121 | return -1; | ||
122 | |||
123 | rc = opal_get_xive(hw_irq, &server, &priority); | ||
124 | if (rc != OPAL_SUCCESS) { | ||
125 | pr_err("%s: opal_set_xive(irq=%d [hw 0x%x] server=%x)" | ||
126 | " error %lld\n", | ||
127 | __func__, d->irq, hw_irq, server, rc); | ||
128 | return -1; | ||
129 | } | ||
130 | |||
131 | wanted_server = xics_get_irq_server(d->irq, cpumask, 1); | ||
132 | if (wanted_server < 0) { | ||
133 | char cpulist[128]; | ||
134 | cpumask_scnprintf(cpulist, sizeof(cpulist), cpumask); | ||
135 | pr_warning("%s: No online cpus in the mask %s for irq %d\n", | ||
136 | __func__, cpulist, d->irq); | ||
137 | return -1; | ||
138 | } | ||
139 | server = ics_opal_mangle_server(wanted_server); | ||
140 | |||
141 | pr_devel("ics-hal: set-affinity irq %d [hw 0x%x] server: 0x%x/0x%x\n", | ||
142 | d->irq, hw_irq, wanted_server, server); | ||
143 | |||
144 | rc = opal_set_xive(hw_irq, server, priority); | ||
145 | if (rc != OPAL_SUCCESS) { | ||
146 | pr_err("%s: opal_set_xive(irq=%d [hw 0x%x] server=%x)" | ||
147 | " error %lld\n", | ||
148 | __func__, d->irq, hw_irq, server, rc); | ||
149 | return -1; | ||
150 | } | ||
151 | return 0; | ||
152 | } | ||
153 | |||
154 | static struct irq_chip ics_opal_irq_chip = { | ||
155 | .name = "OPAL ICS", | ||
156 | .irq_startup = ics_opal_startup, | ||
157 | .irq_mask = ics_opal_mask_irq, | ||
158 | .irq_unmask = ics_opal_unmask_irq, | ||
159 | .irq_eoi = NULL, /* Patched at init time */ | ||
160 | .irq_set_affinity = ics_opal_set_affinity | ||
161 | }; | ||
162 | |||
163 | static int ics_opal_map(struct ics *ics, unsigned int virq); | ||
164 | static void ics_opal_mask_unknown(struct ics *ics, unsigned long vec); | ||
165 | static long ics_opal_get_server(struct ics *ics, unsigned long vec); | ||
166 | |||
167 | static int ics_opal_host_match(struct ics *ics, struct device_node *node) | ||
168 | { | ||
169 | return 1; | ||
170 | } | ||
171 | |||
172 | /* Only one global & state struct ics */ | ||
173 | static struct ics ics_hal = { | ||
174 | .map = ics_opal_map, | ||
175 | .mask_unknown = ics_opal_mask_unknown, | ||
176 | .get_server = ics_opal_get_server, | ||
177 | .host_match = ics_opal_host_match, | ||
178 | }; | ||
179 | |||
180 | static int ics_opal_map(struct ics *ics, unsigned int virq) | ||
181 | { | ||
182 | unsigned int hw_irq = (unsigned int)virq_to_hw(virq); | ||
183 | int64_t rc; | ||
184 | int16_t server; | ||
185 | int8_t priority; | ||
186 | |||
187 | if (WARN_ON(hw_irq == XICS_IPI || hw_irq == XICS_IRQ_SPURIOUS)) | ||
188 | return -EINVAL; | ||
189 | |||
190 | /* Check if HAL knows about this interrupt */ | ||
191 | rc = opal_get_xive(hw_irq, &server, &priority); | ||
192 | if (rc != OPAL_SUCCESS) | ||
193 | return -ENXIO; | ||
194 | |||
195 | irq_set_chip_and_handler(virq, &ics_opal_irq_chip, handle_fasteoi_irq); | ||
196 | irq_set_chip_data(virq, &ics_hal); | ||
197 | |||
198 | return 0; | ||
199 | } | ||
200 | |||
201 | static void ics_opal_mask_unknown(struct ics *ics, unsigned long vec) | ||
202 | { | ||
203 | int64_t rc; | ||
204 | int16_t server; | ||
205 | int8_t priority; | ||
206 | |||
207 | /* Check if HAL knows about this interrupt */ | ||
208 | rc = opal_get_xive(vec, &server, &priority); | ||
209 | if (rc != OPAL_SUCCESS) | ||
210 | return; | ||
211 | |||
212 | ics_opal_mask_real_irq(vec); | ||
213 | } | ||
214 | |||
215 | static long ics_opal_get_server(struct ics *ics, unsigned long vec) | ||
216 | { | ||
217 | int64_t rc; | ||
218 | int16_t server; | ||
219 | int8_t priority; | ||
220 | |||
221 | /* Check if HAL knows about this interrupt */ | ||
222 | rc = opal_get_xive(vec, &server, &priority); | ||
223 | if (rc != OPAL_SUCCESS) | ||
224 | return -1; | ||
225 | return ics_opal_unmangle_server(server); | ||
226 | } | ||
227 | |||
228 | int __init ics_opal_init(void) | ||
229 | { | ||
230 | if (!firmware_has_feature(FW_FEATURE_OPAL)) | ||
231 | return -ENODEV; | ||
232 | |||
233 | /* We need to patch our irq chip's EOI to point to the | ||
234 | * right ICP | ||
235 | */ | ||
236 | ics_opal_irq_chip.irq_eoi = icp_ops->eoi; | ||
237 | |||
238 | /* Register ourselves */ | ||
239 | xics_register_ics(&ics_hal); | ||
240 | |||
241 | pr_info("ICS OPAL backend registered\n"); | ||
242 | |||
243 | return 0; | ||
244 | } | ||
diff --git a/arch/powerpc/sysdev/xics/xics-common.c b/arch/powerpc/sysdev/xics/xics-common.c index 445c5a01b766..63762c672a03 100644 --- a/arch/powerpc/sysdev/xics/xics-common.c +++ b/arch/powerpc/sysdev/xics/xics-common.c | |||
@@ -134,11 +134,10 @@ static void xics_request_ipi(void) | |||
134 | BUG_ON(ipi == NO_IRQ); | 134 | BUG_ON(ipi == NO_IRQ); |
135 | 135 | ||
136 | /* | 136 | /* |
137 | * IPIs are marked IRQF_DISABLED as they must run with irqs | 137 | * IPIs are marked IRQF_PERCPU. The handler was set in map. |
138 | * disabled, and PERCPU. The handler was set in map. | ||
139 | */ | 138 | */ |
140 | BUG_ON(request_irq(ipi, icp_ops->ipi_action, | 139 | BUG_ON(request_irq(ipi, icp_ops->ipi_action, |
141 | IRQF_DISABLED|IRQF_PERCPU, "IPI", NULL)); | 140 | IRQF_PERCPU, "IPI", NULL)); |
142 | } | 141 | } |
143 | 142 | ||
144 | int __init xics_smp_probe(void) | 143 | int __init xics_smp_probe(void) |
@@ -409,14 +408,10 @@ void __init xics_init(void) | |||
409 | int rc = -1; | 408 | int rc = -1; |
410 | 409 | ||
411 | /* Fist locate ICP */ | 410 | /* Fist locate ICP */ |
412 | #ifdef CONFIG_PPC_ICP_HV | ||
413 | if (firmware_has_feature(FW_FEATURE_LPAR)) | 411 | if (firmware_has_feature(FW_FEATURE_LPAR)) |
414 | rc = icp_hv_init(); | 412 | rc = icp_hv_init(); |
415 | #endif | ||
416 | #ifdef CONFIG_PPC_ICP_NATIVE | ||
417 | if (rc < 0) | 413 | if (rc < 0) |
418 | rc = icp_native_init(); | 414 | rc = icp_native_init(); |
419 | #endif | ||
420 | if (rc < 0) { | 415 | if (rc < 0) { |
421 | pr_warning("XICS: Cannot find a Presentation Controller !\n"); | 416 | pr_warning("XICS: Cannot find a Presentation Controller !\n"); |
422 | return; | 417 | return; |
@@ -429,9 +424,9 @@ void __init xics_init(void) | |||
429 | xics_ipi_chip.irq_eoi = icp_ops->eoi; | 424 | xics_ipi_chip.irq_eoi = icp_ops->eoi; |
430 | 425 | ||
431 | /* Now locate ICS */ | 426 | /* Now locate ICS */ |
432 | #ifdef CONFIG_PPC_ICS_RTAS | ||
433 | rc = ics_rtas_init(); | 427 | rc = ics_rtas_init(); |
434 | #endif | 428 | if (rc < 0) |
429 | rc = ics_opal_init(); | ||
435 | if (rc < 0) | 430 | if (rc < 0) |
436 | pr_warning("XICS: Cannot find a Source Controller !\n"); | 431 | pr_warning("XICS: Cannot find a Source Controller !\n"); |
437 | 432 | ||
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c index 42541bbcc7fa..03a217ae3be0 100644 --- a/arch/powerpc/xmon/xmon.c +++ b/arch/powerpc/xmon/xmon.c | |||
@@ -18,7 +18,7 @@ | |||
18 | #include <linux/delay.h> | 18 | #include <linux/delay.h> |
19 | #include <linux/kallsyms.h> | 19 | #include <linux/kallsyms.h> |
20 | #include <linux/cpumask.h> | 20 | #include <linux/cpumask.h> |
21 | #include <linux/module.h> | 21 | #include <linux/export.h> |
22 | #include <linux/sysrq.h> | 22 | #include <linux/sysrq.h> |
23 | #include <linux/interrupt.h> | 23 | #include <linux/interrupt.h> |
24 | #include <linux/irq.h> | 24 | #include <linux/irq.h> |
@@ -340,8 +340,8 @@ int cpus_are_in_xmon(void) | |||
340 | 340 | ||
341 | static inline int unrecoverable_excp(struct pt_regs *regs) | 341 | static inline int unrecoverable_excp(struct pt_regs *regs) |
342 | { | 342 | { |
343 | #ifdef CONFIG_4xx | 343 | #if defined(CONFIG_4xx) || defined(CONFIG_BOOK3E) |
344 | /* We have no MSR_RI bit on 4xx, so we simply return false */ | 344 | /* We have no MSR_RI bit on 4xx or Book3e, so we simply return false */ |
345 | return 0; | 345 | return 0; |
346 | #else | 346 | #else |
347 | return ((regs->msr & MSR_RI) == 0); | 347 | return ((regs->msr & MSR_RI) == 0); |