2 * Copyright (C) 2001 Dave Engebretsen, IBM Corporation
3 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
5 * pSeries specific routines for PCI.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/init.h>
23 #include <linux/ioport.h>
24 #include <linux/kernel.h>
25 #include <linux/pci.h>
26 #include <linux/string.h>
29 #include <asm/pci-bridge.h>
31 #include <asm/ppc-pci.h>
35 void pcibios_name_device(struct pci_dev
*dev
)
37 struct device_node
*dn
;
40 * Add IBM loc code (slot) as a prefix to the device names for service
42 dn
= pci_device_to_OF_node(dev
);
44 const char *loc_code
= of_get_property(dn
, "ibm,loc-code",
47 int loc_len
= strlen(loc_code
);
48 if (loc_len
< sizeof(dev
->dev
.name
)) {
49 memmove(dev
->dev
.name
+loc_len
+1, dev
->dev
.name
,
50 sizeof(dev
->dev
.name
)-loc_len
-1);
51 memcpy(dev
->dev
.name
, loc_code
, loc_len
);
52 dev
->dev
.name
[loc_len
] = ' ';
53 dev
->dev
.name
[sizeof(dev
->dev
.name
)-1] = '\0';
58 DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID
, PCI_ANY_ID
, pcibios_name_device
);
62 #define MAX_VFS_FOR_MAP_PE 256
63 struct pe_map_bar_entry
{
64 __be64 bar
; /* Input: Virtual Function BAR */
65 __be16 rid
; /* Input: Virtual Function Router ID */
66 __be16 pe_num
; /* Output: Virtual Function PE Number */
67 __be32 reserved
; /* Reserved Space */
70 int pseries_send_map_pe(struct pci_dev
*pdev
,
72 struct pe_map_bar_entry
*vf_pe_array
)
76 unsigned long buid
, addr
;
77 int ibm_map_pes
= rtas_token("ibm,open-sriov-map-pe-number");
79 if (ibm_map_pes
== RTAS_UNKNOWN_SERVICE
)
82 pdn
= pci_get_pdn(pdev
);
83 addr
= rtas_config_addr(pdn
->busno
, pdn
->devfn
, 0);
84 buid
= pdn
->phb
->buid
;
85 spin_lock(&rtas_data_buf_lock
);
86 memcpy(rtas_data_buf
, vf_pe_array
,
88 rc
= rtas_call(ibm_map_pes
, 5, 1, NULL
, addr
,
89 BUID_HI(buid
), BUID_LO(buid
),
91 num_vfs
* sizeof(struct pe_map_bar_entry
));
92 memcpy(vf_pe_array
, rtas_data_buf
, RTAS_DATA_BUF_SIZE
);
93 spin_unlock(&rtas_data_buf_lock
);
97 "%s: Failed to associate pes PE#%lx, rc=%x\n",
103 void pseries_set_pe_num(struct pci_dev
*pdev
, u16 vf_index
, __be16 pe_num
)
107 pdn
= pci_get_pdn(pdev
);
108 pdn
->pe_num_map
[vf_index
] = be16_to_cpu(pe_num
);
109 dev_dbg(&pdev
->dev
, "VF %04x:%02x:%02x.%x associated with PE#%x\n",
110 pci_domain_nr(pdev
->bus
),
112 PCI_SLOT(pci_iov_virtfn_devfn(pdev
, vf_index
)),
113 PCI_FUNC(pci_iov_virtfn_devfn(pdev
, vf_index
)),
114 pdn
->pe_num_map
[vf_index
]);
117 int pseries_associate_pes(struct pci_dev
*pdev
, u16 num_vfs
)
121 struct pe_map_bar_entry
*vf_pe_array
;
122 struct resource
*res
;
125 vf_pe_array
= kzalloc(RTAS_DATA_BUF_SIZE
, GFP_KERNEL
);
129 pdn
= pci_get_pdn(pdev
);
130 /* create firmware structure to associate pes */
131 for (vf_index
= 0; vf_index
< num_vfs
; vf_index
++) {
132 pdn
->pe_num_map
[vf_index
] = IODA_INVALID_PE
;
133 for (i
= 0; i
< PCI_SRIOV_NUM_BARS
; i
++) {
134 res
= &pdev
->resource
[i
+ PCI_IOV_RESOURCES
];
137 size
= pcibios_iov_resource_alignment(pdev
, i
+
139 vf_pe_array
[vf_index
].bar
=
140 cpu_to_be64(res
->start
+ size
* vf_index
);
141 vf_pe_array
[vf_index
].rid
=
142 cpu_to_be16((pci_iov_virtfn_bus(pdev
, vf_index
)
143 << 8) | pci_iov_virtfn_devfn(pdev
,
145 vf_pe_array
[vf_index
].pe_num
=
146 cpu_to_be16(IODA_INVALID_PE
);
150 rc
= pseries_send_map_pe(pdev
, num_vfs
, vf_pe_array
);
151 /* Only zero is success */
153 for (vf_index
= 0; vf_index
< num_vfs
; vf_index
++)
154 pseries_set_pe_num(pdev
, vf_index
,
155 vf_pe_array
[vf_index
].pe_num
);
161 int pseries_pci_sriov_enable(struct pci_dev
*pdev
, u16 num_vfs
)
167 struct device_node
*dn
= pci_device_to_OF_node(pdev
);
169 max_vfs
= of_get_property(dn
, "ibm,number-of-configurable-vfs", NULL
);
174 /* First integer stores max config */
175 max_config_vfs
= of_read_number(&max_vfs
[0], 1);
176 if (max_config_vfs
< num_vfs
&& num_vfs
> MAX_VFS_FOR_MAP_PE
) {
178 "Num VFs %x > %x Configurable VFs\n",
179 num_vfs
, (num_vfs
> MAX_VFS_FOR_MAP_PE
) ?
180 MAX_VFS_FOR_MAP_PE
: max_config_vfs
);
184 pdn
= pci_get_pdn(pdev
);
185 pdn
->pe_num_map
= kmalloc_array(num_vfs
,
186 sizeof(*pdn
->pe_num_map
),
188 if (!pdn
->pe_num_map
)
191 rc
= pseries_associate_pes(pdev
, num_vfs
);
193 /* Anything other than zero is failure */
195 dev_err(&pdev
->dev
, "Failure to enable sriov: %x\n", rc
);
196 kfree(pdn
->pe_num_map
);
198 pci_vf_drivers_autoprobe(pdev
, false);
204 int pseries_pcibios_sriov_enable(struct pci_dev
*pdev
, u16 num_vfs
)
206 /* Allocate PCI data */
207 add_dev_pci_data(pdev
);
208 return pseries_pci_sriov_enable(pdev
, num_vfs
);
211 int pseries_pcibios_sriov_disable(struct pci_dev
*pdev
)
215 pdn
= pci_get_pdn(pdev
);
216 /* Releasing pe_num_map */
217 kfree(pdn
->pe_num_map
);
218 /* Release PCI data */
219 remove_dev_pci_data(pdev
);
220 pci_vf_drivers_autoprobe(pdev
, true);
225 static void __init
pSeries_request_regions(void)
230 request_region(0x20,0x20,"pic1");
231 request_region(0xa0,0x20,"pic2");
232 request_region(0x00,0x20,"dma1");
233 request_region(0x40,0x20,"timer");
234 request_region(0x80,0x10,"dma page reg");
235 request_region(0xc0,0x20,"dma2");
238 void __init
pSeries_final_fixup(void)
240 pSeries_request_regions();
242 eeh_addr_cache_build();
244 #ifdef CONFIG_PCI_IOV
245 ppc_md
.pcibios_sriov_enable
= pseries_pcibios_sriov_enable
;
246 ppc_md
.pcibios_sriov_disable
= pseries_pcibios_sriov_disable
;
251 * Assume the winbond 82c105 is the IDE controller on a
252 * p610/p615/p630. We should probably be more careful in case
253 * someone tries to plug in a similar adapter.
255 static void fixup_winbond_82c105(struct pci_dev
* dev
)
260 if (!machine_is(pseries
))
263 printk("Using INTC for W82c105 IDE controller.\n");
264 pci_read_config_dword(dev
, 0x40, ®
);
265 /* Enable LEGIRQ to use INTC instead of ISA interrupts */
266 pci_write_config_dword(dev
, 0x40, reg
| (1<<11));
268 for (i
= 0; i
< DEVICE_COUNT_RESOURCE
; ++i
) {
269 /* zap the 2nd function of the winbond chip */
270 if (dev
->resource
[i
].flags
& IORESOURCE_IO
271 && dev
->bus
->number
== 0 && dev
->devfn
== 0x81)
272 dev
->resource
[i
].flags
&= ~IORESOURCE_IO
;
273 if (dev
->resource
[i
].start
== 0 && dev
->resource
[i
].end
) {
274 dev
->resource
[i
].flags
= 0;
275 dev
->resource
[i
].end
= 0;
279 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_WINBOND
, PCI_DEVICE_ID_WINBOND_82C105
,
280 fixup_winbond_82c105
);
282 int pseries_root_bridge_prepare(struct pci_host_bridge
*bridge
)
284 struct device_node
*dn
, *pdn
;
286 u32 pcie_link_speed_stats
[2];
291 /* Rely on the pcibios_free_controller_deferred() callback. */
292 pci_set_host_bridge_release(bridge
, pcibios_free_controller_deferred
,
293 (void *) pci_bus_to_host(bus
));
295 dn
= pcibios_get_phb_of_node(bus
);
299 for (pdn
= dn
; pdn
!= NULL
; pdn
= of_get_next_parent(pdn
)) {
300 rc
= of_property_read_u32_array(pdn
,
301 "ibm,pcie-link-speed-stats",
302 &pcie_link_speed_stats
[0], 2);
310 pr_debug("no ibm,pcie-link-speed-stats property\n");
314 switch (pcie_link_speed_stats
[0]) {
316 bus
->max_bus_speed
= PCIE_SPEED_2_5GT
;
319 bus
->max_bus_speed
= PCIE_SPEED_5_0GT
;
322 bus
->max_bus_speed
= PCIE_SPEED_8_0GT
;
325 bus
->max_bus_speed
= PCI_SPEED_UNKNOWN
;
329 switch (pcie_link_speed_stats
[1]) {
331 bus
->cur_bus_speed
= PCIE_SPEED_2_5GT
;
334 bus
->cur_bus_speed
= PCIE_SPEED_5_0GT
;
337 bus
->cur_bus_speed
= PCIE_SPEED_8_0GT
;
340 bus
->cur_bus_speed
= PCI_SPEED_UNKNOWN
;