diff options
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/boot/dts/bluestone.dts | 127 | ||||
-rw-r--r-- | arch/powerpc/kernel/cputable.c | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/44x/Kconfig | 1 | ||||
-rw-r--r-- | arch/powerpc/platforms/44x/ppc44x_simple.c | 2 | ||||
-rw-r--r-- | arch/powerpc/sysdev/ppc4xx_pci.c | 70 |
5 files changed, 198 insertions, 4 deletions
diff --git a/arch/powerpc/boot/dts/bluestone.dts b/arch/powerpc/boot/dts/bluestone.dts index 2a56a0dbd1f7..cfa23bf7564f 100644 --- a/arch/powerpc/boot/dts/bluestone.dts +++ b/arch/powerpc/boot/dts/bluestone.dts | |||
@@ -33,7 +33,7 @@ | |||
33 | aliases { | 33 | aliases { |
34 | ethernet0 = &EMAC0; | 34 | ethernet0 = &EMAC0; |
35 | serial0 = &UART0; | 35 | serial0 = &UART0; |
36 | //serial1 = &UART1; --gcl missing UART1 label | 36 | serial1 = &UART1; |
37 | }; | 37 | }; |
38 | 38 | ||
39 | cpus { | 39 | cpus { |
@@ -52,7 +52,7 @@ | |||
52 | d-cache-size = <32768>; | 52 | d-cache-size = <32768>; |
53 | dcr-controller; | 53 | dcr-controller; |
54 | dcr-access-method = "native"; | 54 | dcr-access-method = "native"; |
55 | //next-level-cache = <&L2C0>; --gcl missing L2C0 label | 55 | next-level-cache = <&L2C0>; |
56 | }; | 56 | }; |
57 | }; | 57 | }; |
58 | 58 | ||
@@ -117,6 +117,16 @@ | |||
117 | dcr-reg = <0x00c 0x002>; | 117 | dcr-reg = <0x00c 0x002>; |
118 | }; | 118 | }; |
119 | 119 | ||
120 | L2C0: l2c { | ||
121 | compatible = "ibm,l2-cache-apm82181", "ibm,l2-cache"; | ||
122 | dcr-reg = <0x020 0x008 | ||
123 | 0x030 0x008>; | ||
124 | cache-line-size = <32>; | ||
125 | cache-size = <262144>; | ||
126 | interrupt-parent = <&UIC1>; | ||
127 | interrupts = <11 1>; | ||
128 | }; | ||
129 | |||
120 | plb { | 130 | plb { |
121 | compatible = "ibm,plb4"; | 131 | compatible = "ibm,plb4"; |
122 | #address-cells = <2>; | 132 | #address-cells = <2>; |
@@ -182,6 +192,53 @@ | |||
182 | reg = <0x001a0000 0x00060000>; | 192 | reg = <0x001a0000 0x00060000>; |
183 | }; | 193 | }; |
184 | }; | 194 | }; |
195 | |||
196 | ndfc@1,0 { | ||
197 | compatible = "ibm,ndfc"; | ||
198 | reg = <0x00000003 0x00000000 0x00002000>; | ||
199 | ccr = <0x00001000>; | ||
200 | bank-settings = <0x80002222>; | ||
201 | #address-cells = <1>; | ||
202 | #size-cells = <1>; | ||
203 | /* 2Gb Nand Flash */ | ||
204 | nand { | ||
205 | #address-cells = <1>; | ||
206 | #size-cells = <1>; | ||
207 | |||
208 | partition@0 { | ||
209 | label = "firmware"; | ||
210 | reg = <0x00000000 0x00C00000>; | ||
211 | }; | ||
212 | partition@c00000 { | ||
213 | label = "environment"; | ||
214 | reg = <0x00C00000 0x00B00000>; | ||
215 | }; | ||
216 | partition@1700000 { | ||
217 | label = "kernel"; | ||
218 | reg = <0x01700000 0x00E00000>; | ||
219 | }; | ||
220 | partition@2500000 { | ||
221 | label = "root"; | ||
222 | reg = <0x02500000 0x08200000>; | ||
223 | }; | ||
224 | partition@a700000 { | ||
225 | label = "device-tree"; | ||
226 | reg = <0x0A700000 0x00B00000>; | ||
227 | }; | ||
228 | partition@b200000 { | ||
229 | label = "config"; | ||
230 | reg = <0x0B200000 0x00D00000>; | ||
231 | }; | ||
232 | partition@bf00000 { | ||
233 | label = "diag"; | ||
234 | reg = <0x0BF00000 0x00C00000>; | ||
235 | }; | ||
236 | partition@cb00000 { | ||
237 | label = "vendor"; | ||
238 | reg = <0x0CB00000 0x3500000>; | ||
239 | }; | ||
240 | }; | ||
241 | }; | ||
185 | }; | 242 | }; |
186 | 243 | ||
187 | UART0: serial@ef600300 { | 244 | UART0: serial@ef600300 { |
@@ -195,11 +252,36 @@ | |||
195 | interrupts = <0x1 0x4>; | 252 | interrupts = <0x1 0x4>; |
196 | }; | 253 | }; |
197 | 254 | ||
255 | UART1: serial@ef600400 { | ||
256 | device_type = "serial"; | ||
257 | compatible = "ns16550"; | ||
258 | reg = <0xef600400 0x00000008>; | ||
259 | virtual-reg = <0xef600400>; | ||
260 | clock-frequency = <0>; /* Filled in by U-Boot */ | ||
261 | current-speed = <0>; /* Filled in by U-Boot */ | ||
262 | interrupt-parent = <&UIC0>; | ||
263 | interrupts = <0x1 0x4>; | ||
264 | }; | ||
265 | |||
198 | IIC0: i2c@ef600700 { | 266 | IIC0: i2c@ef600700 { |
199 | compatible = "ibm,iic"; | 267 | compatible = "ibm,iic"; |
200 | reg = <0xef600700 0x00000014>; | 268 | reg = <0xef600700 0x00000014>; |
201 | interrupt-parent = <&UIC0>; | 269 | interrupt-parent = <&UIC0>; |
202 | interrupts = <0x2 0x4>; | 270 | interrupts = <0x2 0x4>; |
271 | #address-cells = <1>; | ||
272 | #size-cells = <0>; | ||
273 | rtc@68 { | ||
274 | compatible = "stm,m41t80"; | ||
275 | reg = <0x68>; | ||
276 | interrupt-parent = <&UIC0>; | ||
277 | interrupts = <0x9 0x8>; | ||
278 | }; | ||
279 | sttm@4C { | ||
280 | compatible = "adm,adm1032"; | ||
281 | reg = <0x4C>; | ||
282 | interrupt-parent = <&UIC1>; | ||
283 | interrupts = <0x1E 0x8>; /* CPU_THERNAL_L */ | ||
284 | }; | ||
203 | }; | 285 | }; |
204 | 286 | ||
205 | IIC1: i2c@ef600800 { | 287 | IIC1: i2c@ef600800 { |
@@ -250,5 +332,46 @@ | |||
250 | }; | 332 | }; |
251 | }; | 333 | }; |
252 | 334 | ||
335 | PCIE0: pciex@d00000000 { | ||
336 | device_type = "pci"; | ||
337 | #interrupt-cells = <1>; | ||
338 | #size-cells = <2>; | ||
339 | #address-cells = <3>; | ||
340 | compatible = "ibm,plb-pciex-apm821xx", "ibm,plb-pciex"; | ||
341 | primary; | ||
342 | port = <0x0>; /* port number */ | ||
343 | reg = <0x0000000d 0x00000000 0x20000000 /* Config space access */ | ||
344 | 0x0000000c 0x08010000 0x00001000>; /* Registers */ | ||
345 | dcr-reg = <0x100 0x020>; | ||
346 | sdr-base = <0x300>; | ||
347 | |||
348 | /* Outbound ranges, one memory and one IO, | ||
349 | * later cannot be changed | ||
350 | */ | ||
351 | ranges = <0x02000000 0x00000000 0x80000000 0x0000000e 0x00000000 0x00000000 0x80000000 | ||
352 | 0x02000000 0x00000000 0x00000000 0x0000000f 0x00000000 0x00000000 0x00100000 | ||
353 | 0x01000000 0x00000000 0x00000000 0x0000000f 0x80000000 0x00000000 0x00010000>; | ||
354 | |||
355 | /* Inbound 2GB range starting at 0 */ | ||
356 | dma-ranges = <0x42000000 0x0 0x0 0x0 0x0 0x0 0x80000000>; | ||
357 | |||
358 | /* This drives busses 40 to 0x7f */ | ||
359 | bus-range = <0x40 0x7f>; | ||
360 | |||
361 | /* Legacy interrupts (note the weird polarity, the bridge seems | ||
362 | * to invert PCIe legacy interrupts). | ||
363 | * We are de-swizzling here because the numbers are actually for | ||
364 | * port of the root complex virtual P2P bridge. But I want | ||
365 | * to avoid putting a node for it in the tree, so the numbers | ||
366 | * below are basically de-swizzled numbers. | ||
367 | * The real slot is on idsel 0, so the swizzling is 1:1 | ||
368 | */ | ||
369 | interrupt-map-mask = <0x0 0x0 0x0 0x7>; | ||
370 | interrupt-map = < | ||
371 | 0x0 0x0 0x0 0x1 &UIC3 0xc 0x4 /* swizzled int A */ | ||
372 | 0x0 0x0 0x0 0x2 &UIC3 0xd 0x4 /* swizzled int B */ | ||
373 | 0x0 0x0 0x0 0x3 &UIC3 0xe 0x4 /* swizzled int C */ | ||
374 | 0x0 0x0 0x0 0x4 &UIC3 0xf 0x4 /* swizzled int D */>; | ||
375 | }; | ||
253 | }; | 376 | }; |
254 | }; | 377 | }; |
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index 81db9e2a8a20..87353baf21fb 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
@@ -1816,7 +1816,7 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
1816 | .platform = "ppc440", | 1816 | .platform = "ppc440", |
1817 | }, | 1817 | }, |
1818 | { /* 464 in APM821xx */ | 1818 | { /* 464 in APM821xx */ |
1819 | .pvr_mask = 0xffffff00, | 1819 | .pvr_mask = 0xfffffff0, |
1820 | .pvr_value = 0x12C41C80, | 1820 | .pvr_value = 0x12C41C80, |
1821 | .cpu_name = "APM821XX", | 1821 | .cpu_name = "APM821XX", |
1822 | .cpu_features = CPU_FTRS_44X, | 1822 | .cpu_features = CPU_FTRS_44X, |
diff --git a/arch/powerpc/platforms/44x/Kconfig b/arch/powerpc/platforms/44x/Kconfig index fcf6bf2ceee9..2e4e64abfab4 100644 --- a/arch/powerpc/platforms/44x/Kconfig +++ b/arch/powerpc/platforms/44x/Kconfig | |||
@@ -23,6 +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 PPC4xx_PCI_EXPRESS | ||
26 | select IBM_EMAC_RGMII | 27 | select IBM_EMAC_RGMII |
27 | help | 28 | help |
28 | This option enables support for the APM APM821xx Evaluation board. | 29 | This option enables support for the APM APM821xx Evaluation board. |
diff --git a/arch/powerpc/platforms/44x/ppc44x_simple.c b/arch/powerpc/platforms/44x/ppc44x_simple.c index 8d2202763415..3ffb915446e3 100644 --- a/arch/powerpc/platforms/44x/ppc44x_simple.c +++ b/arch/powerpc/platforms/44x/ppc44x_simple.c | |||
@@ -52,7 +52,7 @@ machine_device_initcall(ppc44x_simple, ppc44x_device_probe); | |||
52 | static char *board[] __initdata = { | 52 | static char *board[] __initdata = { |
53 | "amcc,arches", | 53 | "amcc,arches", |
54 | "amcc,bamboo", | 54 | "amcc,bamboo", |
55 | "amcc,bluestone", | 55 | "apm,bluestone", |
56 | "amcc,glacier", | 56 | "amcc,glacier", |
57 | "ibm,ebony", | 57 | "ibm,ebony", |
58 | "amcc,eiger", | 58 | "amcc,eiger", |
diff --git a/arch/powerpc/sysdev/ppc4xx_pci.c b/arch/powerpc/sysdev/ppc4xx_pci.c index 4f05f7542346..56e8b3c3c890 100644 --- a/arch/powerpc/sysdev/ppc4xx_pci.c +++ b/arch/powerpc/sysdev/ppc4xx_pci.c | |||
@@ -1050,6 +1050,74 @@ static struct ppc4xx_pciex_hwops ppc460ex_pcie_hwops __initdata = | |||
1050 | .check_link = ppc4xx_pciex_check_link_sdr, | 1050 | .check_link = ppc4xx_pciex_check_link_sdr, |
1051 | }; | 1051 | }; |
1052 | 1052 | ||
1053 | static int __init apm821xx_pciex_core_init(struct device_node *np) | ||
1054 | { | ||
1055 | /* Return the number of pcie port */ | ||
1056 | return 1; | ||
1057 | } | ||
1058 | |||
1059 | static int apm821xx_pciex_init_port_hw(struct ppc4xx_pciex_port *port) | ||
1060 | { | ||
1061 | u32 val; | ||
1062 | |||
1063 | /* | ||
1064 | * Do a software reset on PCIe ports. | ||
1065 | * This code is to fix the issue that pci drivers doesn't re-assign | ||
1066 | * bus number for PCIE devices after Uboot | ||
1067 | * scanned and configured all the buses (eg. PCIE NIC IntelPro/1000 | ||
1068 | * PT quad port, SAS LSI 1064E) | ||
1069 | */ | ||
1070 | |||
1071 | mtdcri(SDR0, PESDR0_460EX_PHY_CTL_RST, 0x0); | ||
1072 | mdelay(10); | ||
1073 | |||
1074 | if (port->endpoint) | ||
1075 | val = PTYPE_LEGACY_ENDPOINT << 20; | ||
1076 | else | ||
1077 | val = PTYPE_ROOT_PORT << 20; | ||
1078 | |||
1079 | val |= LNKW_X1 << 12; | ||
1080 | |||
1081 | mtdcri(SDR0, port->sdr_base + PESDRn_DLPSET, val); | ||
1082 | mtdcri(SDR0, port->sdr_base + PESDRn_UTLSET1, 0x00000000); | ||
1083 | mtdcri(SDR0, port->sdr_base + PESDRn_UTLSET2, 0x01010000); | ||
1084 | |||
1085 | mtdcri(SDR0, PESDR0_460EX_L0CDRCTL, 0x00003230); | ||
1086 | mtdcri(SDR0, PESDR0_460EX_L0DRV, 0x00000130); | ||
1087 | mtdcri(SDR0, PESDR0_460EX_L0CLK, 0x00000006); | ||
1088 | |||
1089 | mtdcri(SDR0, PESDR0_460EX_PHY_CTL_RST, 0x10000000); | ||
1090 | mdelay(50); | ||
1091 | mtdcri(SDR0, PESDR0_460EX_PHY_CTL_RST, 0x30000000); | ||
1092 | |||
1093 | mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET, | ||
1094 | mfdcri(SDR0, port->sdr_base + PESDRn_RCSSET) | | ||
1095 | (PESDRx_RCSSET_RSTGU | PESDRx_RCSSET_RSTPYN)); | ||
1096 | |||
1097 | /* Poll for PHY reset */ | ||
1098 | val = PESDR0_460EX_RSTSTA - port->sdr_base; | ||
1099 | if (ppc4xx_pciex_wait_on_sdr(port, val, 0x1, 1, 100)) { | ||
1100 | printk(KERN_WARNING "%s: PCIE: Can't reset PHY\n", __func__); | ||
1101 | return -EBUSY; | ||
1102 | } else { | ||
1103 | mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET, | ||
1104 | (mfdcri(SDR0, port->sdr_base + PESDRn_RCSSET) & | ||
1105 | ~(PESDRx_RCSSET_RSTGU | PESDRx_RCSSET_RSTDL)) | | ||
1106 | PESDRx_RCSSET_RSTPYN); | ||
1107 | |||
1108 | port->has_ibpre = 1; | ||
1109 | return 0; | ||
1110 | } | ||
1111 | } | ||
1112 | |||
1113 | static struct ppc4xx_pciex_hwops apm821xx_pcie_hwops __initdata = { | ||
1114 | .want_sdr = true, | ||
1115 | .core_init = apm821xx_pciex_core_init, | ||
1116 | .port_init_hw = apm821xx_pciex_init_port_hw, | ||
1117 | .setup_utl = ppc460ex_pciex_init_utl, | ||
1118 | .check_link = ppc4xx_pciex_check_link_sdr, | ||
1119 | }; | ||
1120 | |||
1053 | static int __init ppc460sx_pciex_core_init(struct device_node *np) | 1121 | static int __init ppc460sx_pciex_core_init(struct device_node *np) |
1054 | { | 1122 | { |
1055 | /* HSS drive amplitude */ | 1123 | /* HSS drive amplitude */ |
@@ -1362,6 +1430,8 @@ static int __init ppc4xx_pciex_check_core_init(struct device_node *np) | |||
1362 | ppc4xx_pciex_hwops = &ppc460ex_pcie_hwops; | 1430 | ppc4xx_pciex_hwops = &ppc460ex_pcie_hwops; |
1363 | if (of_device_is_compatible(np, "ibm,plb-pciex-460sx")) | 1431 | if (of_device_is_compatible(np, "ibm,plb-pciex-460sx")) |
1364 | ppc4xx_pciex_hwops = &ppc460sx_pcie_hwops; | 1432 | ppc4xx_pciex_hwops = &ppc460sx_pcie_hwops; |
1433 | if (of_device_is_compatible(np, "ibm,plb-pciex-apm821xx")) | ||
1434 | ppc4xx_pciex_hwops = &apm821xx_pcie_hwops; | ||
1365 | #endif /* CONFIG_44x */ | 1435 | #endif /* CONFIG_44x */ |
1366 | #ifdef CONFIG_40x | 1436 | #ifdef CONFIG_40x |
1367 | if (of_device_is_compatible(np, "ibm,plb-pciex-405ex")) | 1437 | if (of_device_is_compatible(np, "ibm,plb-pciex-405ex")) |