2018-01-26 23:22:04 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* IBM Hot Plug Controller Driver
|
2013-11-14 22:28:18 +04:00
|
|
|
*
|
2005-04-17 02:20:36 +04:00
|
|
|
* Written By: Irene Zubarev, IBM Corporation
|
2013-11-14 22:28:18 +04:00
|
|
|
*
|
2005-04-17 02:20:36 +04:00
|
|
|
* Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
|
|
|
|
* Copyright (C) 2001,2002 IBM Corp.
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Send feedback to <gregkh@us.ibm.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include "ibmphp.h"
|
|
|
|
|
|
|
|
|
|
|
|
static int configure_device(struct pci_func *);
|
|
|
|
static int configure_bridge(struct pci_func **, u8);
|
|
|
|
static struct res_needed *scan_behind_bridge(struct pci_func *, u8);
|
2015-12-28 00:21:11 +03:00
|
|
|
static int add_new_bus(struct bus_node *, struct resource_node *, struct resource_node *, struct resource_node *, u8);
|
|
|
|
static u8 find_sec_number(u8 primary_busno, u8 slotno);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* NOTE..... If BIOS doesn't provide default routing, we assign:
|
2013-11-14 22:28:18 +04:00
|
|
|
* 9 for SCSI, 10 for LAN adapters, and 11 for everything else.
|
2005-04-17 02:20:36 +04:00
|
|
|
* If adapter is bridged, then we assign 11 to it and devices behind it.
|
|
|
|
* We also assign the same irq numbers for multi function devices.
|
|
|
|
* These are PIC mode, so shouldn't matter n.e.ways (hopefully)
|
|
|
|
*/
|
2015-12-28 00:21:11 +03:00
|
|
|
static void assign_alt_irq(struct pci_func *cur_func, u8 class_code)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int j;
|
|
|
|
for (j = 0; j < 4; j++) {
|
|
|
|
if (cur_func->irq[j] == 0xff) {
|
|
|
|
switch (class_code) {
|
|
|
|
case PCI_BASE_CLASS_STORAGE:
|
|
|
|
cur_func->irq[j] = SCSI_IRQ;
|
|
|
|
break;
|
|
|
|
case PCI_BASE_CLASS_NETWORK:
|
|
|
|
cur_func->irq[j] = LAN_IRQ;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cur_func->irq[j] = OTHER_IRQ;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Configures the device to be added (will allocate needed resources if it
|
|
|
|
* can), the device can be a bridge or a regular pci device, can also be
|
|
|
|
* multi-functional
|
2013-11-14 22:28:18 +04:00
|
|
|
*
|
2005-04-17 02:20:36 +04:00
|
|
|
* Input: function to be added
|
2013-11-14 22:28:18 +04:00
|
|
|
*
|
2005-04-17 02:20:36 +04:00
|
|
|
* TO DO: The error case with Multifunction device or multi function bridge,
|
2013-11-14 22:28:18 +04:00
|
|
|
* if there is an error, will need to go through all previous functions and
|
2005-04-17 02:20:36 +04:00
|
|
|
* unconfigure....or can add some code into unconfigure_card....
|
|
|
|
*/
|
2015-12-28 00:21:11 +03:00
|
|
|
int ibmphp_configure_card(struct pci_func *func, u8 slotno)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
u16 vendor_id;
|
|
|
|
u32 class;
|
|
|
|
u8 class_code;
|
|
|
|
u8 hdr_type, device, sec_number;
|
|
|
|
u8 function;
|
|
|
|
struct pci_func *newfunc; /* for multi devices */
|
|
|
|
struct pci_func *cur_func, *prev_func;
|
|
|
|
int rc, i, j;
|
|
|
|
int cleanup_count;
|
|
|
|
u8 flag;
|
|
|
|
u8 valid_device = 0x00; /* to see if we are able to read from card any device info at all */
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("inside configure_card, func->busno = %x\n", func->busno);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
device = func->device;
|
|
|
|
cur_func = func;
|
|
|
|
|
|
|
|
/* We only get bus and device from IRQ routing table. So at this point,
|
2013-11-14 22:28:18 +04:00
|
|
|
* func->busno is correct, and func->device contains only device (at the 5
|
2005-04-17 02:20:36 +04:00
|
|
|
* highest bits)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* For every function on the card */
|
|
|
|
for (function = 0x00; function < 0x08; function++) {
|
|
|
|
unsigned int devfn = PCI_DEVFN(device, function);
|
|
|
|
ibmphp_pci_bus->number = cur_func->busno;
|
|
|
|
|
|
|
|
cur_func->function = function;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("inside the loop, cur_func->busno = %x, cur_func->device = %x, cur_func->function = %x\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func->busno, cur_func->device, cur_func->function);
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_word(ibmphp_pci_bus, devfn, PCI_VENDOR_ID, &vendor_id);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("vendor_id is %x\n", vendor_id);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (vendor_id != PCI_VENDOR_ID_NOTVALID) {
|
|
|
|
/* found correct device!!! */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("found valid device, vendor_id = %x\n", vendor_id);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
++valid_device;
|
|
|
|
|
|
|
|
/* header: x x x x x x x x
|
|
|
|
* | |___________|=> 1=PPB bridge, 0=normal device, 2=CardBus Bridge
|
|
|
|
* |_=> 0 = single function device, 1 = multi-function device
|
|
|
|
*/
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_HEADER_TYPE, &hdr_type);
|
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, PCI_CLASS_REVISION, &class);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
class_code = class >> 24;
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("hrd_type = %x, class = %x, class_code %x\n", hdr_type, class, class_code);
|
2005-04-17 02:20:36 +04:00
|
|
|
class >>= 8; /* to take revision out, class = class.subclass.prog i/f */
|
|
|
|
if (class == PCI_CLASS_NOT_DEFINED_VGA) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("The device %x is VGA compatible and as is not supported for hot plugging. "
|
2005-04-17 02:20:36 +04:00
|
|
|
"Please choose another device.\n", cur_func->device);
|
|
|
|
return -ENODEV;
|
|
|
|
} else if (class == PCI_CLASS_DISPLAY_VGA) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("The device %x is not supported for hot plugging. Please choose another device.\n",
|
2014-04-19 04:13:50 +04:00
|
|
|
cur_func->device);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
switch (hdr_type) {
|
|
|
|
case PCI_HEADER_TYPE_NORMAL:
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("single device case.... vendor id = %x, hdr_type = %x, class = %x\n", vendor_id, hdr_type, class);
|
|
|
|
assign_alt_irq(cur_func, class_code);
|
2014-09-07 22:03:32 +04:00
|
|
|
rc = configure_device(cur_func);
|
|
|
|
if (rc < 0) {
|
2005-04-17 02:20:36 +04:00
|
|
|
/* We need to do this in case some other BARs were properly inserted */
|
2015-12-28 00:21:11 +03:00
|
|
|
err("was not able to configure devfunc %x on bus %x.\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func->device, cur_func->busno);
|
|
|
|
cleanup_count = 6;
|
|
|
|
goto error;
|
2013-11-14 22:28:18 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func->next = NULL;
|
|
|
|
function = 0x8;
|
|
|
|
break;
|
|
|
|
case PCI_HEADER_TYPE_MULTIDEVICE:
|
2015-12-28 00:21:11 +03:00
|
|
|
assign_alt_irq(cur_func, class_code);
|
2014-09-07 22:03:32 +04:00
|
|
|
rc = configure_device(cur_func);
|
|
|
|
if (rc < 0) {
|
2005-04-17 02:20:36 +04:00
|
|
|
/* We need to do this in case some other BARs were properly inserted */
|
2015-12-28 00:21:11 +03:00
|
|
|
err("was not able to configure devfunc %x on bus %x...bailing out\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func->device, cur_func->busno);
|
|
|
|
cleanup_count = 6;
|
|
|
|
goto error;
|
|
|
|
}
|
2006-02-28 17:34:49 +03:00
|
|
|
newfunc = kzalloc(sizeof(*newfunc), GFP_KERNEL);
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
if (!newfunc)
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENOMEM;
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
newfunc->busno = cur_func->busno;
|
|
|
|
newfunc->device = device;
|
|
|
|
cur_func->next = newfunc;
|
|
|
|
cur_func = newfunc;
|
|
|
|
for (j = 0; j < 4; j++)
|
|
|
|
newfunc->irq[j] = cur_func->irq[j];
|
|
|
|
break;
|
|
|
|
case PCI_HEADER_TYPE_MULTIBRIDGE:
|
|
|
|
class >>= 8;
|
|
|
|
if (class != PCI_CLASS_BRIDGE_PCI) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("This %x is not PCI-to-PCI bridge, and as is not supported for hot-plugging. Please insert another card.\n",
|
2014-04-19 04:13:50 +04:00
|
|
|
cur_func->device);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
2015-12-28 00:21:11 +03:00
|
|
|
assign_alt_irq(cur_func, class_code);
|
|
|
|
rc = configure_bridge(&cur_func, slotno);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (rc == -ENODEV) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("You chose to insert Single Bridge, or nested bridges, this is not supported...\n");
|
|
|
|
err("Bus %x, devfunc %x\n", cur_func->busno, cur_func->device);
|
2005-04-17 02:20:36 +04:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
if (rc) {
|
|
|
|
/* We need to do this in case some other BARs were properly inserted */
|
2015-12-28 00:21:11 +03:00
|
|
|
err("was not able to hot-add PPB properly.\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
func->bus = 1; /* To indicate to the unconfigure function that this is a PPB */
|
|
|
|
cleanup_count = 2;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_SECONDARY_BUS, &sec_number);
|
2006-03-15 03:24:47 +03:00
|
|
|
flag = 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
if (func->devices[i]) {
|
2006-02-28 17:34:49 +03:00
|
|
|
newfunc = kzalloc(sizeof(*newfunc), GFP_KERNEL);
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
if (!newfunc)
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENOMEM;
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
newfunc->busno = sec_number;
|
|
|
|
newfunc->device = (u8) i;
|
|
|
|
for (j = 0; j < 4; j++)
|
|
|
|
newfunc->irq[j] = cur_func->irq[j];
|
|
|
|
|
|
|
|
if (flag) {
|
|
|
|
for (prev_func = cur_func; prev_func->next; prev_func = prev_func->next) ;
|
|
|
|
prev_func->next = newfunc;
|
|
|
|
} else
|
|
|
|
cur_func->next = newfunc;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
rc = ibmphp_configure_card(newfunc, slotno);
|
2005-04-17 02:20:36 +04:00
|
|
|
/* This could only happen if kmalloc failed */
|
|
|
|
if (rc) {
|
|
|
|
/* We need to do this in case bridge itself got configured properly, but devices behind it failed */
|
|
|
|
func->bus = 1; /* To indicate to the unconfigure function that this is a PPB */
|
|
|
|
cleanup_count = 2;
|
|
|
|
goto error;
|
|
|
|
}
|
2006-03-15 03:24:47 +03:00
|
|
|
flag = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-28 17:34:49 +03:00
|
|
|
newfunc = kzalloc(sizeof(*newfunc), GFP_KERNEL);
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
if (!newfunc)
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENOMEM;
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
newfunc->busno = cur_func->busno;
|
|
|
|
newfunc->device = device;
|
|
|
|
for (j = 0; j < 4; j++)
|
|
|
|
newfunc->irq[j] = cur_func->irq[j];
|
2015-12-28 00:21:11 +03:00
|
|
|
for (prev_func = cur_func; prev_func->next; prev_func = prev_func->next);
|
2005-04-17 02:20:36 +04:00
|
|
|
prev_func->next = newfunc;
|
|
|
|
cur_func = newfunc;
|
|
|
|
break;
|
|
|
|
case PCI_HEADER_TYPE_BRIDGE:
|
|
|
|
class >>= 8;
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("class now is %x\n", class);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (class != PCI_CLASS_BRIDGE_PCI) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("This %x is not PCI-to-PCI bridge, and as is not supported for hot-plugging. Please insert another card.\n",
|
2014-04-19 04:13:50 +04:00
|
|
|
cur_func->device);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
assign_alt_irq(cur_func, class_code);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("cur_func->busno b4 configure_bridge is %x\n", cur_func->busno);
|
|
|
|
rc = configure_bridge(&cur_func, slotno);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (rc == -ENODEV) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("You chose to insert Single Bridge, or nested bridges, this is not supported...\n");
|
|
|
|
err("Bus %x, devfunc %x\n", cur_func->busno, cur_func->device);
|
2005-04-17 02:20:36 +04:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
if (rc) {
|
|
|
|
/* We need to do this in case some other BARs were properly inserted */
|
|
|
|
func->bus = 1; /* To indicate to the unconfigure function that this is a PPB */
|
2015-12-28 00:21:11 +03:00
|
|
|
err("was not able to hot-add PPB properly.\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
cleanup_count = 2;
|
|
|
|
goto error;
|
|
|
|
}
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("cur_func->busno = %x, device = %x, function = %x\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func->busno, device, function);
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_SECONDARY_BUS, &sec_number);
|
|
|
|
debug("after configuring bridge..., sec_number = %x\n", sec_number);
|
2006-03-15 03:24:47 +03:00
|
|
|
flag = 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
if (func->devices[i]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("inside for loop, device is %x\n", i);
|
2006-02-28 17:34:49 +03:00
|
|
|
newfunc = kzalloc(sizeof(*newfunc), GFP_KERNEL);
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
if (!newfunc)
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENOMEM;
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
newfunc->busno = sec_number;
|
|
|
|
newfunc->device = (u8) i;
|
|
|
|
for (j = 0; j < 4; j++)
|
|
|
|
newfunc->irq[j] = cur_func->irq[j];
|
|
|
|
|
|
|
|
if (flag) {
|
2015-12-28 00:21:11 +03:00
|
|
|
for (prev_func = cur_func; prev_func->next; prev_func = prev_func->next);
|
2005-04-17 02:20:36 +04:00
|
|
|
prev_func->next = newfunc;
|
|
|
|
} else
|
|
|
|
cur_func->next = newfunc;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
rc = ibmphp_configure_card(newfunc, slotno);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* Again, this case should not happen... For complete paranoia, will need to call remove_bus */
|
|
|
|
if (rc) {
|
|
|
|
/* We need to do this in case some other BARs were properly inserted */
|
|
|
|
func->bus = 1; /* To indicate to the unconfigure function that this is a PPB */
|
|
|
|
cleanup_count = 2;
|
|
|
|
goto error;
|
|
|
|
}
|
2006-03-15 03:24:47 +03:00
|
|
|
flag = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function = 0x8;
|
|
|
|
break;
|
|
|
|
default:
|
2015-12-28 00:21:11 +03:00
|
|
|
err("MAJOR PROBLEM!!!!, header type not supported? %x\n", hdr_type);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENXIO;
|
|
|
|
break;
|
|
|
|
} /* end of switch */
|
|
|
|
} /* end of valid device */
|
|
|
|
} /* end of for */
|
|
|
|
|
|
|
|
if (!valid_device) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("Cannot find any valid devices on the card. Or unable to read from card.\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
|
|
|
for (i = 0; i < cleanup_count; i++) {
|
|
|
|
if (cur_func->io[i]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(cur_func->io[i]);
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func->io[i] = NULL;
|
|
|
|
} else if (cur_func->pfmem[i]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(cur_func->pfmem[i]);
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func->pfmem[i] = NULL;
|
|
|
|
} else if (cur_func->mem[i]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(cur_func->mem[i]);
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func->mem[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-11-14 22:28:18 +04:00
|
|
|
* This function configures the pci BARs of a single device.
|
2005-04-17 02:20:36 +04:00
|
|
|
* Input: pointer to the pci_func
|
|
|
|
* Output: configured PCI, 0, or error
|
|
|
|
*/
|
2015-12-28 00:21:11 +03:00
|
|
|
static int configure_device(struct pci_func *func)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
u32 bar[6];
|
|
|
|
u32 address[] = {
|
|
|
|
PCI_BASE_ADDRESS_0,
|
|
|
|
PCI_BASE_ADDRESS_1,
|
|
|
|
PCI_BASE_ADDRESS_2,
|
|
|
|
PCI_BASE_ADDRESS_3,
|
|
|
|
PCI_BASE_ADDRESS_4,
|
|
|
|
PCI_BASE_ADDRESS_5,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
u8 irq;
|
|
|
|
int count;
|
|
|
|
int len[6];
|
|
|
|
struct resource_node *io[6];
|
|
|
|
struct resource_node *mem[6];
|
|
|
|
struct resource_node *mem_tmp;
|
|
|
|
struct resource_node *pfmem[6];
|
|
|
|
unsigned int devfn;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("%s - inside\n", __func__);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
devfn = PCI_DEVFN(func->device, func->function);
|
|
|
|
ibmphp_pci_bus->number = func->busno;
|
|
|
|
|
|
|
|
for (count = 0; address[count]; count++) { /* for 6 BARs */
|
|
|
|
|
2013-11-14 22:28:18 +04:00
|
|
|
/* not sure if i need this. per scott, said maybe need * something like this
|
2005-04-17 02:20:36 +04:00
|
|
|
if devices don't adhere 100% to the spec, so don't want to write
|
|
|
|
to the reserved bits
|
|
|
|
|
2013-11-14 22:28:18 +04:00
|
|
|
pcibios_read_config_byte(cur_func->busno, cur_func->device,
|
2005-04-17 02:20:36 +04:00
|
|
|
PCI_BASE_ADDRESS_0 + 4 * count, &tmp);
|
|
|
|
if (tmp & 0x01) // IO
|
2013-11-14 22:28:18 +04:00
|
|
|
pcibios_write_config_dword(cur_func->busno, cur_func->device,
|
2005-04-17 02:20:36 +04:00
|
|
|
PCI_BASE_ADDRESS_0 + 4 * count, 0xFFFFFFFD);
|
|
|
|
else // Memory
|
2013-11-14 22:28:18 +04:00
|
|
|
pcibios_write_config_dword(cur_func->busno, cur_func->device,
|
2005-04-17 02:20:36 +04:00
|
|
|
PCI_BASE_ADDRESS_0 + 4 * count, 0xFFFFFFFF);
|
|
|
|
*/
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0xFFFFFFFF);
|
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, address[count], &bar[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (!bar[count]) /* This BAR is not implemented */
|
|
|
|
continue;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("Device %x BAR %d wants %x\n", func->device, count, bar[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_SPACE_IO) {
|
|
|
|
/* This is IO */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("inside IO SPACE\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
len[count] = bar[count] & 0xFFFFFFFC;
|
|
|
|
len[count] = ~len[count] + 1;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("len[count] in IO %x, count %d\n", len[count], count);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-02-28 17:34:49 +03:00
|
|
|
io[count] = kzalloc(sizeof(struct resource_node), GFP_KERNEL);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
if (!io[count])
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENOMEM;
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
io[count]->type = IO;
|
|
|
|
io[count]->busno = func->busno;
|
|
|
|
io[count]->devfunc = PCI_DEVFN(func->device, func->function);
|
|
|
|
io[count]->len = len[count];
|
|
|
|
if (ibmphp_check_resource(io[count], 0) == 0) {
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_add_resource(io[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->io[count] = io[count];
|
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("cannot allocate requested io for bus %x device %x function %x len %x\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
func->busno, func->device, func->function, len[count]);
|
2015-12-28 00:21:11 +03:00
|
|
|
kfree(io[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], func->io[count]->start);
|
2013-11-14 22:28:18 +04:00
|
|
|
|
|
|
|
/* _______________This is for debugging purposes only_____________________ */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("b4 writing, the IO address is %x\n", func->io[count]->start);
|
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, address[count], &bar[count]);
|
|
|
|
debug("after writing.... the start address is %x\n", bar[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
/* _________________________________________________________________________*/
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* This is Memory */
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_MEM_PREFETCH) {
|
|
|
|
/* pfmem */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("PFMEM SPACE\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
len[count] = bar[count] & 0xFFFFFFF0;
|
|
|
|
len[count] = ~len[count] + 1;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("len[count] in PFMEM %x, count %d\n", len[count], count);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-02-28 17:34:49 +03:00
|
|
|
pfmem[count] = kzalloc(sizeof(struct resource_node), GFP_KERNEL);
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
if (!pfmem[count])
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENOMEM;
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
pfmem[count]->type = PFMEM;
|
|
|
|
pfmem[count]->busno = func->busno;
|
|
|
|
pfmem[count]->devfunc = PCI_DEVFN(func->device,
|
|
|
|
func->function);
|
|
|
|
pfmem[count]->len = len[count];
|
2006-03-15 03:24:47 +03:00
|
|
|
pfmem[count]->fromMem = 0;
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_check_resource(pfmem[count], 0) == 0) {
|
|
|
|
ibmphp_add_resource(pfmem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->pfmem[count] = pfmem[count];
|
|
|
|
} else {
|
2006-02-28 17:34:49 +03:00
|
|
|
mem_tmp = kzalloc(sizeof(*mem_tmp), GFP_KERNEL);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!mem_tmp) {
|
2015-12-28 00:21:11 +03:00
|
|
|
kfree(pfmem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
mem_tmp->type = MEM;
|
|
|
|
mem_tmp->busno = pfmem[count]->busno;
|
|
|
|
mem_tmp->devfunc = pfmem[count]->devfunc;
|
|
|
|
mem_tmp->len = pfmem[count]->len;
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("there's no pfmem... going into mem.\n");
|
|
|
|
if (ibmphp_check_resource(mem_tmp, 0) == 0) {
|
|
|
|
ibmphp_add_resource(mem_tmp);
|
2006-03-15 03:24:47 +03:00
|
|
|
pfmem[count]->fromMem = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
pfmem[count]->rangeno = mem_tmp->rangeno;
|
|
|
|
pfmem[count]->start = mem_tmp->start;
|
|
|
|
pfmem[count]->end = mem_tmp->end;
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_add_pfmem_from_mem(pfmem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->pfmem[count] = pfmem[count];
|
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("cannot allocate requested pfmem for bus %x, device %x, len %x\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
func->busno, func->device, len[count]);
|
2015-12-28 00:21:11 +03:00
|
|
|
kfree(mem_tmp);
|
|
|
|
kfree(pfmem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], func->pfmem[count]->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2013-11-14 22:28:18 +04:00
|
|
|
/*_______________This is for debugging purposes only______________________________*/
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("b4 writing, start address is %x\n", func->pfmem[count]->start);
|
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, address[count], &bar[count]);
|
|
|
|
debug("after writing, start address is %x\n", bar[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
/*_________________________________________________________________________________*/
|
|
|
|
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_MEM_TYPE_64) { /* takes up another dword */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("inside the mem 64 case, count %d\n", count);
|
2005-04-17 02:20:36 +04:00
|
|
|
count += 1;
|
|
|
|
/* on the 2nd dword, write all 0s, since we can't handle them n.e.ways */
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0x00000000);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* regular memory */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("REGULAR MEM SPACE\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
len[count] = bar[count] & 0xFFFFFFF0;
|
|
|
|
len[count] = ~len[count] + 1;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("len[count] in Mem %x, count %d\n", len[count], count);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-02-28 17:34:49 +03:00
|
|
|
mem[count] = kzalloc(sizeof(struct resource_node), GFP_KERNEL);
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
if (!mem[count])
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENOMEM;
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
mem[count]->type = MEM;
|
|
|
|
mem[count]->busno = func->busno;
|
|
|
|
mem[count]->devfunc = PCI_DEVFN(func->device,
|
|
|
|
func->function);
|
|
|
|
mem[count]->len = len[count];
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_check_resource(mem[count], 0) == 0) {
|
|
|
|
ibmphp_add_resource(mem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->mem[count] = mem[count];
|
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("cannot allocate requested mem for bus %x, device %x, len %x\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
func->busno, func->device, len[count]);
|
2015-12-28 00:21:11 +03:00
|
|
|
kfree(mem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], func->mem[count]->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
/* _______________________This is for debugging purposes only _______________________*/
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("b4 writing, start address is %x\n", func->mem[count]->start);
|
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, address[count], &bar[count]);
|
|
|
|
debug("after writing, the address is %x\n", bar[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
/* __________________________________________________________________________________*/
|
|
|
|
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_MEM_TYPE_64) {
|
|
|
|
/* takes up another dword */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("inside mem 64 case, reg. mem, count %d\n", count);
|
2005-04-17 02:20:36 +04:00
|
|
|
count += 1;
|
|
|
|
/* on the 2nd dword, write all 0s, since we can't handle them n.e.ways */
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0x00000000);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} /* end of mem */
|
|
|
|
} /* end of for */
|
|
|
|
|
|
|
|
func->bus = 0; /* To indicate that this is not a PPB */
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_INTERRUPT_PIN, &irq);
|
2005-04-17 02:20:36 +04:00
|
|
|
if ((irq > 0x00) && (irq < 0x05))
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_INTERRUPT_LINE, func->irq[irq - 1]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_CACHE_LINE_SIZE, CACHE);
|
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_LATENCY_TIMER, LATENCY);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, PCI_ROM_ADDRESS, 0x00L);
|
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_COMMAND, DEVICEENABLE);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* This routine configures a PCI-2-PCI bridge and the functions behind it
|
|
|
|
* Parameters: pci_func
|
2013-11-14 22:28:18 +04:00
|
|
|
* Returns:
|
2005-04-17 02:20:36 +04:00
|
|
|
******************************************************************************/
|
2015-12-28 00:21:11 +03:00
|
|
|
static int configure_bridge(struct pci_func **func_passed, u8 slotno)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int count;
|
|
|
|
int i;
|
|
|
|
int rc;
|
|
|
|
u8 sec_number;
|
|
|
|
u8 io_base;
|
|
|
|
u16 pfmem_base;
|
|
|
|
u32 bar[2];
|
|
|
|
u32 len[2];
|
2006-03-15 03:24:47 +03:00
|
|
|
u8 flag_io = 0;
|
|
|
|
u8 flag_mem = 0;
|
|
|
|
u8 flag_pfmem = 0;
|
|
|
|
u8 need_io_upper = 0;
|
|
|
|
u8 need_pfmem_upper = 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
struct res_needed *amount_needed = NULL;
|
|
|
|
struct resource_node *io = NULL;
|
|
|
|
struct resource_node *bus_io[2] = {NULL, NULL};
|
|
|
|
struct resource_node *mem = NULL;
|
|
|
|
struct resource_node *bus_mem[2] = {NULL, NULL};
|
|
|
|
struct resource_node *mem_tmp = NULL;
|
|
|
|
struct resource_node *pfmem = NULL;
|
|
|
|
struct resource_node *bus_pfmem[2] = {NULL, NULL};
|
|
|
|
struct bus_node *bus;
|
|
|
|
u32 address[] = {
|
|
|
|
PCI_BASE_ADDRESS_0,
|
|
|
|
PCI_BASE_ADDRESS_1,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
struct pci_func *func = *func_passed;
|
|
|
|
unsigned int devfn;
|
|
|
|
u8 irq;
|
|
|
|
int retval;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("%s - enter\n", __func__);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
devfn = PCI_DEVFN(func->function, func->device);
|
|
|
|
ibmphp_pci_bus->number = func->busno;
|
|
|
|
|
|
|
|
/* Configuring necessary info for the bridge so that we could see the devices
|
|
|
|
* behind it
|
|
|
|
*/
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_PRIMARY_BUS, func->busno);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* _____________________For debugging purposes only __________________________
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_config_byte(ibmphp_pci_bus, devfn, PCI_PRIMARY_BUS, &pri_number);
|
|
|
|
debug("primary # written into the bridge is %x\n", pri_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
___________________________________________________________________________*/
|
|
|
|
|
|
|
|
/* in EBDA, only get allocated 1 additional bus # per slot */
|
2015-12-28 00:21:11 +03:00
|
|
|
sec_number = find_sec_number(func->busno, slotno);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (sec_number == 0xff) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("cannot allocate secondary bus number for the bridged device\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("after find_sec_number, the number we got is %x\n", sec_number);
|
|
|
|
debug("AFTER FIND_SEC_NUMBER, func->busno IS %x\n", func->busno);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_SECONDARY_BUS, sec_number);
|
2013-11-14 22:28:18 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* __________________For debugging purposes only __________________________________
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_SECONDARY_BUS, &sec_number);
|
|
|
|
debug("sec_number after write/read is %x\n", sec_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
________________________________________________________________________________*/
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_SUBORDINATE_BUS, sec_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* __________________For debugging purposes only ____________________________________
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_SUBORDINATE_BUS, &sec_number);
|
|
|
|
debug("subordinate number after write/read is %x\n", sec_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
__________________________________________________________________________________*/
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_CACHE_LINE_SIZE, CACHE);
|
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_LATENCY_TIMER, LATENCY);
|
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_SEC_LATENCY_TIMER, LATENCY);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("func->busno is %x\n", func->busno);
|
|
|
|
debug("sec_number after writing is %x\n", sec_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
|
|
|
|
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
2013-11-14 22:28:18 +04:00
|
|
|
!!!!!!!!!!!!!!!NEED TO ADD!!! FAST BACK-TO-BACK ENABLE!!!!!!!!!!!!!!!!!!!!
|
2005-04-17 02:20:36 +04:00
|
|
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
|
|
|
|
|
|
|
|
|
|
|
|
/* First we need to allocate mem/io for the bridge itself in case it needs it */
|
|
|
|
for (count = 0; address[count]; count++) { /* for 2 BARs */
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0xFFFFFFFF);
|
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, address[count], &bar[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (!bar[count]) {
|
|
|
|
/* This BAR is not implemented */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("so we come here then, eh?, count = %d\n", count);
|
2005-04-17 02:20:36 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// tmp_bar = bar[count];
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("Bar %d wants %x\n", count, bar[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_SPACE_IO) {
|
|
|
|
/* This is IO */
|
|
|
|
len[count] = bar[count] & 0xFFFFFFFC;
|
|
|
|
len[count] = ~len[count] + 1;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("len[count] in IO = %x\n", len[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-02-28 17:34:49 +03:00
|
|
|
bus_io[count] = kzalloc(sizeof(struct resource_node), GFP_KERNEL);
|
2013-11-14 22:28:18 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!bus_io[count]) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
bus_io[count]->type = IO;
|
|
|
|
bus_io[count]->busno = func->busno;
|
|
|
|
bus_io[count]->devfunc = PCI_DEVFN(func->device,
|
|
|
|
func->function);
|
|
|
|
bus_io[count]->len = len[count];
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_check_resource(bus_io[count], 0) == 0) {
|
|
|
|
ibmphp_add_resource(bus_io[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->io[count] = bus_io[count];
|
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("cannot allocate requested io for bus %x, device %x, len %x\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
func->busno, func->device, len[count]);
|
2015-12-28 00:21:11 +03:00
|
|
|
kfree(bus_io[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], func->io[count]->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
} else {
|
|
|
|
/* This is Memory */
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_MEM_PREFETCH) {
|
|
|
|
/* pfmem */
|
|
|
|
len[count] = bar[count] & 0xFFFFFFF0;
|
|
|
|
len[count] = ~len[count] + 1;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("len[count] in PFMEM = %x\n", len[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-02-28 17:34:49 +03:00
|
|
|
bus_pfmem[count] = kzalloc(sizeof(struct resource_node), GFP_KERNEL);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!bus_pfmem[count]) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
bus_pfmem[count]->type = PFMEM;
|
|
|
|
bus_pfmem[count]->busno = func->busno;
|
|
|
|
bus_pfmem[count]->devfunc = PCI_DEVFN(func->device,
|
|
|
|
func->function);
|
|
|
|
bus_pfmem[count]->len = len[count];
|
2006-03-15 03:24:47 +03:00
|
|
|
bus_pfmem[count]->fromMem = 0;
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_check_resource(bus_pfmem[count], 0) == 0) {
|
|
|
|
ibmphp_add_resource(bus_pfmem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->pfmem[count] = bus_pfmem[count];
|
|
|
|
} else {
|
2006-02-28 17:34:49 +03:00
|
|
|
mem_tmp = kzalloc(sizeof(*mem_tmp), GFP_KERNEL);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!mem_tmp) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
mem_tmp->type = MEM;
|
|
|
|
mem_tmp->busno = bus_pfmem[count]->busno;
|
|
|
|
mem_tmp->devfunc = bus_pfmem[count]->devfunc;
|
|
|
|
mem_tmp->len = bus_pfmem[count]->len;
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_check_resource(mem_tmp, 0) == 0) {
|
|
|
|
ibmphp_add_resource(mem_tmp);
|
2006-03-15 03:24:47 +03:00
|
|
|
bus_pfmem[count]->fromMem = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
bus_pfmem[count]->rangeno = mem_tmp->rangeno;
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_add_pfmem_from_mem(bus_pfmem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->pfmem[count] = bus_pfmem[count];
|
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("cannot allocate requested pfmem for bus %x, device %x, len %x\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
func->busno, func->device, len[count]);
|
2015-12-28 00:21:11 +03:00
|
|
|
kfree(mem_tmp);
|
|
|
|
kfree(bus_pfmem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], func->pfmem[count]->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_MEM_TYPE_64) {
|
|
|
|
/* takes up another dword */
|
|
|
|
count += 1;
|
|
|
|
/* on the 2nd dword, write all 0s, since we can't handle them n.e.ways */
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0x00000000);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* regular memory */
|
|
|
|
len[count] = bar[count] & 0xFFFFFFF0;
|
|
|
|
len[count] = ~len[count] + 1;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("len[count] in Memory is %x\n", len[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-02-28 17:34:49 +03:00
|
|
|
bus_mem[count] = kzalloc(sizeof(struct resource_node), GFP_KERNEL);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!bus_mem[count]) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
bus_mem[count]->type = MEM;
|
|
|
|
bus_mem[count]->busno = func->busno;
|
|
|
|
bus_mem[count]->devfunc = PCI_DEVFN(func->device,
|
|
|
|
func->function);
|
|
|
|
bus_mem[count]->len = len[count];
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_check_resource(bus_mem[count], 0) == 0) {
|
|
|
|
ibmphp_add_resource(bus_mem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->mem[count] = bus_mem[count];
|
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("cannot allocate requested mem for bus %x, device %x, len %x\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
func->busno, func->device, len[count]);
|
2015-12-28 00:21:11 +03:00
|
|
|
kfree(bus_mem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], func->mem[count]->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_MEM_TYPE_64) {
|
|
|
|
/* takes up another dword */
|
|
|
|
count += 1;
|
|
|
|
/* on the 2nd dword, write all 0s, since we can't handle them n.e.ways */
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0x00000000);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} /* end of mem */
|
|
|
|
} /* end of for */
|
|
|
|
|
|
|
|
/* Now need to see how much space the devices behind the bridge needed */
|
2015-12-28 00:21:11 +03:00
|
|
|
amount_needed = scan_behind_bridge(func, sec_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (amount_needed == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
ibmphp_pci_bus->number = func->busno;
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("after coming back from scan_behind_bridge\n");
|
|
|
|
debug("amount_needed->not_correct = %x\n", amount_needed->not_correct);
|
|
|
|
debug("amount_needed->io = %x\n", amount_needed->io);
|
|
|
|
debug("amount_needed->mem = %x\n", amount_needed->mem);
|
|
|
|
debug("amount_needed->pfmem = %x\n", amount_needed->pfmem);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2013-11-14 22:28:18 +04:00
|
|
|
if (amount_needed->not_correct) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("amount_needed is not correct\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
for (count = 0; address[count]; count++) {
|
|
|
|
/* for 2 BARs */
|
|
|
|
if (bus_io[count]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(bus_io[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->io[count] = NULL;
|
|
|
|
} else if (bus_pfmem[count]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(bus_pfmem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->pfmem[count] = NULL;
|
|
|
|
} else if (bus_mem[count]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(bus_mem[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->mem[count] = NULL;
|
|
|
|
}
|
|
|
|
}
|
2015-12-28 00:21:11 +03:00
|
|
|
kfree(amount_needed);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!amount_needed->io) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("it doesn't want IO?\n");
|
2006-03-15 03:24:47 +03:00
|
|
|
flag_io = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("it wants %x IO behind the bridge\n", amount_needed->io);
|
2006-02-28 17:34:49 +03:00
|
|
|
io = kzalloc(sizeof(*io), GFP_KERNEL);
|
2013-11-14 22:28:18 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!io) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
io->type = IO;
|
|
|
|
io->busno = func->busno;
|
|
|
|
io->devfunc = PCI_DEVFN(func->device, func->function);
|
|
|
|
io->len = amount_needed->io;
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_check_resource(io, 1) == 0) {
|
|
|
|
debug("were we able to add io\n");
|
|
|
|
ibmphp_add_resource(io);
|
2006-03-15 03:24:47 +03:00
|
|
|
flag_io = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!amount_needed->mem) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("it doesn't want n.e.memory?\n");
|
2006-03-15 03:24:47 +03:00
|
|
|
flag_mem = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("it wants %x memory behind the bridge\n", amount_needed->mem);
|
2006-02-28 17:34:49 +03:00
|
|
|
mem = kzalloc(sizeof(*mem), GFP_KERNEL);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!mem) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
mem->type = MEM;
|
|
|
|
mem->busno = func->busno;
|
|
|
|
mem->devfunc = PCI_DEVFN(func->device, func->function);
|
|
|
|
mem->len = amount_needed->mem;
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_check_resource(mem, 1) == 0) {
|
|
|
|
ibmphp_add_resource(mem);
|
2006-03-15 03:24:47 +03:00
|
|
|
flag_mem = 1;
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("were we able to add mem\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!amount_needed->pfmem) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("it doesn't want n.e.pfmem mem?\n");
|
2006-03-15 03:24:47 +03:00
|
|
|
flag_pfmem = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("it wants %x pfmemory behind the bridge\n", amount_needed->pfmem);
|
2006-02-28 17:34:49 +03:00
|
|
|
pfmem = kzalloc(sizeof(*pfmem), GFP_KERNEL);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!pfmem) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
pfmem->type = PFMEM;
|
|
|
|
pfmem->busno = func->busno;
|
|
|
|
pfmem->devfunc = PCI_DEVFN(func->device, func->function);
|
|
|
|
pfmem->len = amount_needed->pfmem;
|
2006-03-15 03:24:47 +03:00
|
|
|
pfmem->fromMem = 0;
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_check_resource(pfmem, 1) == 0) {
|
|
|
|
ibmphp_add_resource(pfmem);
|
2006-03-15 03:24:47 +03:00
|
|
|
flag_pfmem = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
} else {
|
2006-02-28 17:34:49 +03:00
|
|
|
mem_tmp = kzalloc(sizeof(*mem_tmp), GFP_KERNEL);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!mem_tmp) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
mem_tmp->type = MEM;
|
|
|
|
mem_tmp->busno = pfmem->busno;
|
|
|
|
mem_tmp->devfunc = pfmem->devfunc;
|
|
|
|
mem_tmp->len = pfmem->len;
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_check_resource(mem_tmp, 1) == 0) {
|
|
|
|
ibmphp_add_resource(mem_tmp);
|
2006-03-15 03:24:47 +03:00
|
|
|
pfmem->fromMem = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
pfmem->rangeno = mem_tmp->rangeno;
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_add_pfmem_from_mem(pfmem);
|
2006-03-15 03:24:47 +03:00
|
|
|
flag_pfmem = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("b4 if (flag_io && flag_mem && flag_pfmem)\n");
|
|
|
|
debug("flag_io = %x, flag_mem = %x, flag_pfmem = %x\n", flag_io, flag_mem, flag_pfmem);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (flag_io && flag_mem && flag_pfmem) {
|
|
|
|
/* If on bootup, there was a bridged card in this slot,
|
|
|
|
* then card was removed and ibmphp got unloaded and loaded
|
|
|
|
* back again, there's no way for us to remove the bus
|
|
|
|
* struct, so no need to kmalloc, can use existing node
|
|
|
|
*/
|
2015-12-28 00:21:11 +03:00
|
|
|
bus = ibmphp_find_res_bus(sec_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!bus) {
|
2006-02-28 17:34:49 +03:00
|
|
|
bus = kzalloc(sizeof(*bus), GFP_KERNEL);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!bus) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
bus->busno = sec_number;
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("b4 adding new bus\n");
|
|
|
|
rc = add_new_bus(bus, io, mem, pfmem, func->busno);
|
2005-04-17 02:20:36 +04:00
|
|
|
} else if (!(bus->rangeIO) && !(bus->rangeMem) && !(bus->rangePFMem))
|
2015-12-28 00:21:11 +03:00
|
|
|
rc = add_new_bus(bus, io, mem, pfmem, 0xFF);
|
2005-04-17 02:20:36 +04:00
|
|
|
else {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("expected bus structure not empty?\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
retval = -EIO;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (rc) {
|
|
|
|
if (rc == -ENOMEM) {
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_bus(bus, func->busno);
|
|
|
|
kfree(amount_needed);
|
2005-04-17 02:20:36 +04:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
retval = rc;
|
|
|
|
goto error;
|
|
|
|
}
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_IO_BASE, &io_base);
|
|
|
|
pci_bus_read_config_word(ibmphp_pci_bus, devfn, PCI_PREF_MEMORY_BASE, &pfmem_base);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if ((io_base & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("io 32\n");
|
2006-03-15 03:24:47 +03:00
|
|
|
need_io_upper = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
2005-11-22 09:51:57 +03:00
|
|
|
if ((pfmem_base & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("pfmem 64\n");
|
2006-03-15 03:24:47 +03:00
|
|
|
need_pfmem_upper = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (bus->noIORanges) {
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_IO_BASE, 0x00 | bus->rangeIO->start >> 8);
|
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_IO_LIMIT, 0x00 | bus->rangeIO->end >> 8);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* _______________This is for debugging purposes only ____________________
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_IO_BASE, &temp);
|
|
|
|
debug("io_base = %x\n", (temp & PCI_IO_RANGE_TYPE_MASK) << 8);
|
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_IO_LIMIT, &temp);
|
|
|
|
debug("io_limit = %x\n", (temp & PCI_IO_RANGE_TYPE_MASK) << 8);
|
2005-04-17 02:20:36 +04:00
|
|
|
________________________________________________________________________*/
|
|
|
|
|
|
|
|
if (need_io_upper) { /* since can't support n.e.ways */
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_IO_BASE_UPPER16, 0x0000);
|
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_IO_LIMIT_UPPER16, 0x0000);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_IO_BASE, 0x00);
|
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_IO_LIMIT, 0x00);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (bus->noMemRanges) {
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_MEMORY_BASE, 0x0000 | bus->rangeMem->start >> 16);
|
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_MEMORY_LIMIT, 0x0000 | bus->rangeMem->end >> 16);
|
2013-11-14 22:28:18 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* ____________________This is for debugging purposes only ________________________
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_word(ibmphp_pci_bus, devfn, PCI_MEMORY_BASE, &temp);
|
|
|
|
debug("mem_base = %x\n", (temp & PCI_MEMORY_RANGE_TYPE_MASK) << 16);
|
|
|
|
pci_bus_read_config_word(ibmphp_pci_bus, devfn, PCI_MEMORY_LIMIT, &temp);
|
|
|
|
debug("mem_limit = %x\n", (temp & PCI_MEMORY_RANGE_TYPE_MASK) << 16);
|
2005-04-17 02:20:36 +04:00
|
|
|
__________________________________________________________________________________*/
|
|
|
|
|
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_MEMORY_BASE, 0xffff);
|
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_MEMORY_LIMIT, 0x0000);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
if (bus->noPFMemRanges) {
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_PREF_MEMORY_BASE, 0x0000 | bus->rangePFMem->start >> 16);
|
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_PREF_MEMORY_LIMIT, 0x0000 | bus->rangePFMem->end >> 16);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* __________________________This is for debugging purposes only _______________________
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_word(ibmphp_pci_bus, devfn, PCI_PREF_MEMORY_BASE, &temp);
|
|
|
|
debug("pfmem_base = %x", (temp & PCI_MEMORY_RANGE_TYPE_MASK) << 16);
|
|
|
|
pci_bus_read_config_word(ibmphp_pci_bus, devfn, PCI_PREF_MEMORY_LIMIT, &temp);
|
|
|
|
debug("pfmem_limit = %x\n", (temp & PCI_MEMORY_RANGE_TYPE_MASK) << 16);
|
2005-04-17 02:20:36 +04:00
|
|
|
______________________________________________________________________________________*/
|
|
|
|
|
|
|
|
if (need_pfmem_upper) { /* since can't support n.e.ways */
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, PCI_PREF_BASE_UPPER32, 0x00000000);
|
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, PCI_PREF_LIMIT_UPPER32, 0x00000000);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_PREF_MEMORY_BASE, 0xffff);
|
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_PREF_MEMORY_LIMIT, 0x0000);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("b4 writing control information\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_INTERRUPT_PIN, &irq);
|
2005-04-17 02:20:36 +04:00
|
|
|
if ((irq > 0x00) && (irq < 0x05))
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_INTERRUPT_LINE, func->irq[irq - 1]);
|
2013-11-14 22:28:18 +04:00
|
|
|
/*
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_BRIDGE_CONTROL, ctrl);
|
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_BRIDGE_CONTROL, PCI_BRIDGE_CTL_PARITY);
|
|
|
|
pci_bus_write_config_byte(ibmphp_pci_bus, devfn, PCI_BRIDGE_CONTROL, PCI_BRIDGE_CTL_SERR);
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_COMMAND, DEVICEENABLE);
|
|
|
|
pci_bus_write_config_word(ibmphp_pci_bus, devfn, PCI_BRIDGE_CONTROL, 0x07);
|
2005-04-17 02:20:36 +04:00
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
if (amount_needed->devices[i]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("device where devices[i] is 1 = %x\n", i);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->devices[i] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func->bus = 1; /* For unconfiguring, to indicate it's PPB */
|
|
|
|
func_passed = &func;
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("func->busno b4 returning is %x\n", func->busno);
|
|
|
|
debug("func->busno b4 returning in the other structure is %x\n", (*func_passed)->busno);
|
|
|
|
kfree(amount_needed);
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0;
|
|
|
|
} else {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("Configuring bridge was unsuccessful...\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
mem_tmp = NULL;
|
|
|
|
retval = -EIO;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
error:
|
|
|
|
kfree(amount_needed);
|
|
|
|
if (pfmem)
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(pfmem);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (io)
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(io);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (mem)
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(mem);
|
2005-04-17 02:20:36 +04:00
|
|
|
for (i = 0; i < 2; i++) { /* for 2 BARs */
|
|
|
|
if (bus_io[i]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(bus_io[i]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->io[i] = NULL;
|
|
|
|
} else if (bus_pfmem[i]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(bus_pfmem[i]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->pfmem[i] = NULL;
|
|
|
|
} else if (bus_mem[i]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(bus_mem[i]);
|
2005-04-17 02:20:36 +04:00
|
|
|
func->mem[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* This function adds up the amount of resources needed behind the PPB bridge
|
|
|
|
* and passes it to the configure_bridge function
|
|
|
|
* Input: bridge function
|
2013-11-14 22:28:18 +04:00
|
|
|
* Output: amount of resources needed
|
2005-04-17 02:20:36 +04:00
|
|
|
*****************************************************************************/
|
2015-12-28 00:21:11 +03:00
|
|
|
static struct res_needed *scan_behind_bridge(struct pci_func *func, u8 busno)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int count, len[6];
|
|
|
|
u16 vendor_id;
|
|
|
|
u8 hdr_type;
|
|
|
|
u8 device, function;
|
|
|
|
unsigned int devfn;
|
|
|
|
int howmany = 0; /*this is to see if there are any devices behind the bridge */
|
|
|
|
|
|
|
|
u32 bar[6], class;
|
|
|
|
u32 address[] = {
|
|
|
|
PCI_BASE_ADDRESS_0,
|
|
|
|
PCI_BASE_ADDRESS_1,
|
|
|
|
PCI_BASE_ADDRESS_2,
|
|
|
|
PCI_BASE_ADDRESS_3,
|
|
|
|
PCI_BASE_ADDRESS_4,
|
|
|
|
PCI_BASE_ADDRESS_5,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
struct res_needed *amount;
|
|
|
|
|
2006-02-28 17:34:49 +03:00
|
|
|
amount = kzalloc(sizeof(*amount), GFP_KERNEL);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (amount == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ibmphp_pci_bus->number = busno;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("the bus_no behind the bridge is %x\n", busno);
|
|
|
|
debug("scanning devices behind the bridge...\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
for (device = 0; device < 32; device++) {
|
|
|
|
amount->devices[device] = 0;
|
|
|
|
for (function = 0; function < 8; function++) {
|
|
|
|
devfn = PCI_DEVFN(device, function);
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_word(ibmphp_pci_bus, devfn, PCI_VENDOR_ID, &vendor_id);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (vendor_id != PCI_VENDOR_ID_NOTVALID) {
|
|
|
|
/* found correct device!!! */
|
|
|
|
howmany++;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_HEADER_TYPE, &hdr_type);
|
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, PCI_CLASS_REVISION, &class);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("hdr_type behind the bridge is %x\n", hdr_type);
|
2015-12-03 22:18:18 +03:00
|
|
|
if ((hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("embedded bridges not supported for hot-plugging.\n");
|
2006-03-15 03:24:47 +03:00
|
|
|
amount->not_correct = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
return amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
class >>= 8; /* to take revision out, class = class.subclass.prog i/f */
|
|
|
|
if (class == PCI_CLASS_NOT_DEFINED_VGA) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("The device %x is VGA compatible and as is not supported for hot plugging. Please choose another device.\n", device);
|
2006-03-15 03:24:47 +03:00
|
|
|
amount->not_correct = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
return amount;
|
|
|
|
} else if (class == PCI_CLASS_DISPLAY_VGA) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("The device %x is not supported for hot plugging. Please choose another device.\n", device);
|
2006-03-15 03:24:47 +03:00
|
|
|
amount->not_correct = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
return amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
amount->devices[device] = 1;
|
|
|
|
|
|
|
|
for (count = 0; address[count]; count++) {
|
|
|
|
/* for 6 BARs */
|
|
|
|
/*
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, address[count], &tmp);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (tmp & 0x01) // IO
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0xFFFFFFFD);
|
2005-04-17 02:20:36 +04:00
|
|
|
else // MEMORY
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0xFFFFFFFF);
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0xFFFFFFFF);
|
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, address[count], &bar[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("what is bar[count]? %x, count = %d\n", bar[count], count);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (!bar[count]) /* This BAR is not implemented */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
//tmp_bar = bar[count];
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("count %d device %x function %x wants %x resources\n", count, device, function, bar[count]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_SPACE_IO) {
|
|
|
|
/* This is IO */
|
|
|
|
len[count] = bar[count] & 0xFFFFFFFC;
|
|
|
|
len[count] = ~len[count] + 1;
|
|
|
|
amount->io += len[count];
|
|
|
|
} else {
|
|
|
|
/* This is Memory */
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_MEM_PREFETCH) {
|
|
|
|
/* pfmem */
|
|
|
|
len[count] = bar[count] & 0xFFFFFFF0;
|
|
|
|
len[count] = ~len[count] + 1;
|
|
|
|
amount->pfmem += len[count];
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_MEM_TYPE_64)
|
|
|
|
/* takes up another dword */
|
|
|
|
count += 1;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* regular memory */
|
|
|
|
len[count] = bar[count] & 0xFFFFFFF0;
|
|
|
|
len[count] = ~len[count] + 1;
|
|
|
|
amount->mem += len[count];
|
|
|
|
if (bar[count] & PCI_BASE_ADDRESS_MEM_TYPE_64) {
|
|
|
|
/* takes up another dword */
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} /* end for */
|
|
|
|
} /* end if (valid) */
|
|
|
|
} /* end for */
|
|
|
|
} /* end for */
|
|
|
|
|
|
|
|
if (!howmany)
|
2006-03-15 03:24:47 +03:00
|
|
|
amount->not_correct = 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
else
|
2006-03-15 03:24:47 +03:00
|
|
|
amount->not_correct = 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
if ((amount->io) && (amount->io < IOBRIDGE))
|
|
|
|
amount->io = IOBRIDGE;
|
|
|
|
if ((amount->mem) && (amount->mem < MEMBRIDGE))
|
|
|
|
amount->mem = MEMBRIDGE;
|
|
|
|
if ((amount->pfmem) && (amount->pfmem < MEMBRIDGE))
|
|
|
|
amount->pfmem = MEMBRIDGE;
|
|
|
|
return amount;
|
|
|
|
}
|
|
|
|
|
2013-11-14 22:28:18 +04:00
|
|
|
/* The following 3 unconfigure_boot_ routines deal with the case when we had the card
|
|
|
|
* upon bootup in the system, since we don't allocate func to such case, we need to read
|
|
|
|
* the start addresses from pci config space and then find the corresponding entries in
|
2005-04-17 02:20:36 +04:00
|
|
|
* our resource lists. The functions return either 0, -ENODEV, or -1 (general failure)
|
|
|
|
* Change: we also call these functions even if we configured the card ourselves (i.e., not
|
|
|
|
* the bootup case), since it should work same way
|
|
|
|
*/
|
2015-12-28 00:21:11 +03:00
|
|
|
static int unconfigure_boot_device(u8 busno, u8 device, u8 function)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
u32 start_address;
|
|
|
|
u32 address[] = {
|
|
|
|
PCI_BASE_ADDRESS_0,
|
|
|
|
PCI_BASE_ADDRESS_1,
|
|
|
|
PCI_BASE_ADDRESS_2,
|
|
|
|
PCI_BASE_ADDRESS_3,
|
|
|
|
PCI_BASE_ADDRESS_4,
|
|
|
|
PCI_BASE_ADDRESS_5,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
int count;
|
|
|
|
struct resource_node *io;
|
|
|
|
struct resource_node *mem;
|
|
|
|
struct resource_node *pfmem;
|
|
|
|
struct bus_node *bus;
|
|
|
|
u32 end_address;
|
|
|
|
u32 temp_end;
|
|
|
|
u32 size;
|
|
|
|
u32 tmp_address;
|
|
|
|
unsigned int devfn;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("%s - enter\n", __func__);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
bus = ibmphp_find_res_bus(busno);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!bus) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("cannot find corresponding bus.\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
devfn = PCI_DEVFN(device, function);
|
|
|
|
ibmphp_pci_bus->number = busno;
|
|
|
|
for (count = 0; address[count]; count++) { /* for 6 BARs */
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, address[count], &start_address);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* We can do this here, b/c by that time the device driver of the card has been stopped */
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], 0xFFFFFFFF);
|
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, address[count], &size);
|
|
|
|
pci_bus_write_config_dword(ibmphp_pci_bus, devfn, address[count], start_address);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("start_address is %x\n", start_address);
|
|
|
|
debug("busno, device, function %x %x %x\n", busno, device, function);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!size) {
|
|
|
|
/* This BAR is not implemented */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("is this bar no implemented?, count = %d\n", count);
|
2005-04-17 02:20:36 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
tmp_address = start_address;
|
|
|
|
if (start_address & PCI_BASE_ADDRESS_SPACE_IO) {
|
|
|
|
/* This is IO */
|
|
|
|
start_address &= PCI_BASE_ADDRESS_IO_MASK;
|
|
|
|
size = size & 0xFFFFFFFC;
|
|
|
|
size = ~size + 1;
|
|
|
|
end_address = start_address + size - 1;
|
2017-10-30 15:26:32 +03:00
|
|
|
if (ibmphp_find_resource(bus, start_address, &io, IO))
|
|
|
|
goto report_search_failure;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("io->start = %x\n", io->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
temp_end = io->end;
|
|
|
|
start_address = io->end + 1;
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(io);
|
2005-04-17 02:20:36 +04:00
|
|
|
/* This is needed b/c of the old I/O restrictions in the BIOS */
|
|
|
|
while (temp_end < end_address) {
|
2017-10-30 15:26:32 +03:00
|
|
|
if (ibmphp_find_resource(bus, start_address,
|
|
|
|
&io, IO))
|
|
|
|
goto report_search_failure;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("io->start = %x\n", io->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
temp_end = io->end;
|
|
|
|
start_address = io->end + 1;
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(io);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ????????? DO WE NEED TO WRITE ANYTHING INTO THE PCI CONFIG SPACE BACK ?????????? */
|
|
|
|
} else {
|
|
|
|
/* This is Memory */
|
|
|
|
if (start_address & PCI_BASE_ADDRESS_MEM_PREFETCH) {
|
|
|
|
/* pfmem */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("start address of pfmem is %x\n", start_address);
|
2005-04-11 17:01:54 +04:00
|
|
|
start_address &= PCI_BASE_ADDRESS_MEM_MASK;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_find_resource(bus, start_address, &pfmem, PFMEM) < 0) {
|
|
|
|
err("cannot find corresponding PFMEM resource to remove\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
if (pfmem) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("pfmem->start = %x\n", pfmem->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ibmphp_remove_resource(pfmem);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* regular memory */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("start address of mem is %x\n", start_address);
|
2005-04-11 17:01:54 +04:00
|
|
|
start_address &= PCI_BASE_ADDRESS_MEM_MASK;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_find_resource(bus, start_address, &mem, MEM) < 0) {
|
|
|
|
err("cannot find corresponding MEM resource to remove\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
if (mem) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("mem->start = %x\n", mem->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ibmphp_remove_resource(mem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (tmp_address & PCI_BASE_ADDRESS_MEM_TYPE_64) {
|
|
|
|
/* takes up another dword */
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
} /* end of mem */
|
|
|
|
} /* end of for */
|
|
|
|
|
|
|
|
return 0;
|
2017-10-30 15:26:32 +03:00
|
|
|
|
|
|
|
report_search_failure:
|
|
|
|
err("cannot find corresponding IO resource to remove\n");
|
|
|
|
return -EIO;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
static int unconfigure_boot_bridge(u8 busno, u8 device, u8 function)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int count;
|
|
|
|
int bus_no, pri_no, sub_no, sec_no = 0;
|
|
|
|
u32 start_address, tmp_address;
|
|
|
|
u8 sec_number, sub_number, pri_number;
|
|
|
|
struct resource_node *io = NULL;
|
|
|
|
struct resource_node *mem = NULL;
|
|
|
|
struct resource_node *pfmem = NULL;
|
|
|
|
struct bus_node *bus;
|
|
|
|
u32 address[] = {
|
|
|
|
PCI_BASE_ADDRESS_0,
|
|
|
|
PCI_BASE_ADDRESS_1,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
unsigned int devfn;
|
|
|
|
|
|
|
|
devfn = PCI_DEVFN(device, function);
|
|
|
|
ibmphp_pci_bus->number = busno;
|
|
|
|
bus_no = (int) busno;
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("busno is %x\n", busno);
|
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_PRIMARY_BUS, &pri_number);
|
|
|
|
debug("%s - busno = %x, primary_number = %x\n", __func__, busno, pri_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_SECONDARY_BUS, &sec_number);
|
|
|
|
debug("sec_number is %x\n", sec_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
sec_no = (int) sec_number;
|
|
|
|
pri_no = (int) pri_number;
|
|
|
|
if (pri_no != bus_no) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("primary numbers in our structures and pci config space don't match.\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_SUBORDINATE_BUS, &sub_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
sub_no = (int) sub_number;
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("sub_no is %d, sec_no is %d\n", sub_no, sec_no);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (sec_no != sub_number) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("there're more buses behind this bridge. Hot removal is not supported. Please choose another card\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
bus = ibmphp_find_res_bus(sec_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!bus) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("cannot find Bus structure for the bridged device\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
2006-11-17 04:19:25 +03:00
|
|
|
debug("bus->busno is %x\n", bus->busno);
|
|
|
|
debug("sec_number is %x\n", sec_number);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_bus(bus, busno);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
for (count = 0; address[count]; count++) {
|
|
|
|
/* for 2 BARs */
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, address[count], &start_address);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (!start_address) {
|
|
|
|
/* This BAR is not implemented */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp_address = start_address;
|
|
|
|
|
|
|
|
if (start_address & PCI_BASE_ADDRESS_SPACE_IO) {
|
|
|
|
/* This is IO */
|
|
|
|
start_address &= PCI_BASE_ADDRESS_IO_MASK;
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_find_resource(bus, start_address, &io, IO) < 0) {
|
|
|
|
err("cannot find corresponding IO resource to remove\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
if (io)
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("io->start = %x\n", io->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(io);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* ????????? DO WE NEED TO WRITE ANYTHING INTO THE PCI CONFIG SPACE BACK ?????????? */
|
|
|
|
} else {
|
|
|
|
/* This is Memory */
|
|
|
|
if (start_address & PCI_BASE_ADDRESS_MEM_PREFETCH) {
|
|
|
|
/* pfmem */
|
2005-04-11 17:01:54 +04:00
|
|
|
start_address &= PCI_BASE_ADDRESS_MEM_MASK;
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_find_resource(bus, start_address, &pfmem, PFMEM) < 0) {
|
|
|
|
err("cannot find corresponding PFMEM resource to remove\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
if (pfmem) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("pfmem->start = %x\n", pfmem->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ibmphp_remove_resource(pfmem);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* regular memory */
|
2005-04-11 17:01:54 +04:00
|
|
|
start_address &= PCI_BASE_ADDRESS_MEM_MASK;
|
2015-12-28 00:21:11 +03:00
|
|
|
if (ibmphp_find_resource(bus, start_address, &mem, MEM) < 0) {
|
|
|
|
err("cannot find corresponding MEM resource to remove\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
if (mem) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("mem->start = %x\n", mem->start);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ibmphp_remove_resource(mem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (tmp_address & PCI_BASE_ADDRESS_MEM_TYPE_64) {
|
|
|
|
/* takes up another dword */
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
} /* end of mem */
|
|
|
|
} /* end of for */
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("%s - exiting, returning success\n", __func__);
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
static int unconfigure_boot_card(struct slot *slot_cur)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
u16 vendor_id;
|
|
|
|
u32 class;
|
|
|
|
u8 hdr_type;
|
|
|
|
u8 device;
|
|
|
|
u8 busno;
|
|
|
|
u8 function;
|
|
|
|
int rc;
|
|
|
|
unsigned int devfn;
|
|
|
|
u8 valid_device = 0x00; /* To see if we are ever able to find valid device and read it */
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("%s - enter\n", __func__);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
device = slot_cur->device;
|
|
|
|
busno = slot_cur->bus;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("b4 for loop, device is %x\n", device);
|
2005-04-17 02:20:36 +04:00
|
|
|
/* For every function on the card */
|
|
|
|
for (function = 0x0; function < 0x08; function++) {
|
|
|
|
devfn = PCI_DEVFN(device, function);
|
|
|
|
ibmphp_pci_bus->number = busno;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_word(ibmphp_pci_bus, devfn, PCI_VENDOR_ID, &vendor_id);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (vendor_id != PCI_VENDOR_ID_NOTVALID) {
|
|
|
|
/* found correct device!!! */
|
|
|
|
++valid_device;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("%s - found correct device\n", __func__);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* header: x x x x x x x x
|
|
|
|
* | |___________|=> 1=PPB bridge, 0=normal device, 2=CardBus Bridge
|
|
|
|
* |_=> 0 = single function device, 1 = multi-function device
|
|
|
|
*/
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
pci_bus_read_config_byte(ibmphp_pci_bus, devfn, PCI_HEADER_TYPE, &hdr_type);
|
|
|
|
pci_bus_read_config_dword(ibmphp_pci_bus, devfn, PCI_CLASS_REVISION, &class);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("hdr_type %x, class %x\n", hdr_type, class);
|
2005-04-17 02:20:36 +04:00
|
|
|
class >>= 8; /* to take revision out, class = class.subclass.prog i/f */
|
|
|
|
if (class == PCI_CLASS_NOT_DEFINED_VGA) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("The device %x function %x is VGA compatible and is not supported for hot removing. Please choose another device.\n", device, function);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
|
|
|
} else if (class == PCI_CLASS_DISPLAY_VGA) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("The device %x function %x is not supported for hot removing. Please choose another device.\n", device, function);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (hdr_type) {
|
|
|
|
case PCI_HEADER_TYPE_NORMAL:
|
2015-12-28 00:21:11 +03:00
|
|
|
rc = unconfigure_boot_device(busno, device, function);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (rc) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("was not able to unconfigure device %x func %x on bus %x. bailing out...\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
device, function, busno);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
function = 0x8;
|
|
|
|
break;
|
|
|
|
case PCI_HEADER_TYPE_MULTIDEVICE:
|
2015-12-28 00:21:11 +03:00
|
|
|
rc = unconfigure_boot_device(busno, device, function);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (rc) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("was not able to unconfigure device %x func %x on bus %x. bailing out...\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
device, function, busno);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PCI_HEADER_TYPE_BRIDGE:
|
|
|
|
class >>= 8;
|
|
|
|
if (class != PCI_CLASS_BRIDGE_PCI) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("This device %x function %x is not PCI-to-PCI bridge, and is not supported for hot-removing. Please try another card.\n", device, function);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
2015-12-28 00:21:11 +03:00
|
|
|
rc = unconfigure_boot_bridge(busno, device, function);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (rc != 0) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("was not able to hot-remove PPB properly.\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
function = 0x8;
|
|
|
|
break;
|
|
|
|
case PCI_HEADER_TYPE_MULTIBRIDGE:
|
|
|
|
class >>= 8;
|
|
|
|
if (class != PCI_CLASS_BRIDGE_PCI) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("This device %x function %x is not PCI-to-PCI bridge, and is not supported for hot-removing. Please try another card.\n", device, function);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
2015-12-28 00:21:11 +03:00
|
|
|
rc = unconfigure_boot_bridge(busno, device, function);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (rc != 0) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("was not able to hot-remove PPB properly.\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2015-12-28 00:21:11 +03:00
|
|
|
err("MAJOR PROBLEM!!!! Cannot read device's header\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -1;
|
|
|
|
break;
|
|
|
|
} /* end of switch */
|
|
|
|
} /* end of valid device */
|
|
|
|
} /* end of for */
|
|
|
|
|
|
|
|
if (!valid_device) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("Could not find device to unconfigure. Or could not read the card.\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* free the resources of the card (multi, single, or bridged)
|
|
|
|
* Parameters: slot, flag to say if this is for removing entire module or just
|
|
|
|
* unconfiguring the device
|
|
|
|
* TO DO: will probably need to add some code in case there was some resource,
|
|
|
|
* to remove it... this is from when we have errors in the configure_card...
|
2013-11-14 22:28:18 +04:00
|
|
|
* !!!!!!!!!!!!!!!!!!!!!!!!!FOR BUSES!!!!!!!!!!!!
|
|
|
|
* Returns: 0, -1, -ENODEV
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2015-12-28 00:21:11 +03:00
|
|
|
int ibmphp_unconfigure_card(struct slot **slot_cur, int the_end)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int count;
|
|
|
|
int rc;
|
|
|
|
struct slot *sl = *slot_cur;
|
|
|
|
struct pci_func *cur_func = NULL;
|
|
|
|
struct pci_func *temp_func;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("%s - enter\n", __func__);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (!the_end) {
|
|
|
|
/* Need to unconfigure the card */
|
2015-12-28 00:21:11 +03:00
|
|
|
rc = unconfigure_boot_card(sl);
|
2005-04-17 02:20:36 +04:00
|
|
|
if ((rc == -ENODEV) || (rc == -EIO) || (rc == -EINVAL)) {
|
|
|
|
/* In all other cases, will still need to get rid of func structure if it exists */
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sl->func) {
|
|
|
|
cur_func = sl->func;
|
|
|
|
while (cur_func) {
|
|
|
|
/* TO DO: WILL MOST LIKELY NEED TO GET RID OF THE BUS STRUCTURE FROM RESOURCES AS WELL */
|
|
|
|
if (cur_func->bus) {
|
|
|
|
/* in other words, it's a PPB */
|
|
|
|
count = 2;
|
|
|
|
} else {
|
|
|
|
count = 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
if (cur_func->io[i]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("io[%d] exists\n", i);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (the_end > 0)
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(cur_func->io[i]);
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func->io[i] = NULL;
|
|
|
|
}
|
|
|
|
if (cur_func->mem[i]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("mem[%d] exists\n", i);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (the_end > 0)
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(cur_func->mem[i]);
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func->mem[i] = NULL;
|
|
|
|
}
|
|
|
|
if (cur_func->pfmem[i]) {
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("pfmem[%d] exists\n", i);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (the_end > 0)
|
2015-12-28 00:21:11 +03:00
|
|
|
ibmphp_remove_resource(cur_func->pfmem[i]);
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func->pfmem[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
temp_func = cur_func->next;
|
2015-12-28 00:21:11 +03:00
|
|
|
kfree(cur_func);
|
2005-04-17 02:20:36 +04:00
|
|
|
cur_func = temp_func;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sl->func = NULL;
|
|
|
|
*slot_cur = sl;
|
2015-12-28 00:21:11 +03:00
|
|
|
debug("%s - exit\n", __func__);
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* add a new bus resulting from hot-plugging a PPB bridge with devices
|
|
|
|
*
|
|
|
|
* Input: bus and the amount of resources needed (we know we can assign those,
|
|
|
|
* since they've been checked already
|
|
|
|
* Output: bus added to the correct spot
|
2013-11-14 22:28:18 +04:00
|
|
|
* 0, -1, error
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2015-12-28 00:21:11 +03:00
|
|
|
static int add_new_bus(struct bus_node *bus, struct resource_node *io, struct resource_node *mem, struct resource_node *pfmem, u8 parent_busno)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct range_node *io_range = NULL;
|
|
|
|
struct range_node *mem_range = NULL;
|
|
|
|
struct range_node *pfmem_range = NULL;
|
|
|
|
struct bus_node *cur_bus = NULL;
|
|
|
|
|
|
|
|
/* Trying to find the parent bus number */
|
|
|
|
if (parent_busno != 0xFF) {
|
2015-12-28 00:21:11 +03:00
|
|
|
cur_bus = ibmphp_find_res_bus(parent_busno);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!cur_bus) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("strange, cannot find bus which is supposed to be at the system... something is terribly wrong...\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
2013-11-14 22:28:18 +04:00
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
list_add(&bus->bus_list, &cur_bus->bus_list);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
if (io) {
|
2006-02-28 17:34:49 +03:00
|
|
|
io_range = kzalloc(sizeof(*io_range), GFP_KERNEL);
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
if (!io_range)
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENOMEM;
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
io_range->start = io->start;
|
|
|
|
io_range->end = io->end;
|
|
|
|
io_range->rangeno = 1;
|
|
|
|
bus->noIORanges = 1;
|
|
|
|
bus->rangeIO = io_range;
|
|
|
|
}
|
|
|
|
if (mem) {
|
2006-02-28 17:34:49 +03:00
|
|
|
mem_range = kzalloc(sizeof(*mem_range), GFP_KERNEL);
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
if (!mem_range)
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENOMEM;
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
mem_range->start = mem->start;
|
|
|
|
mem_range->end = mem->end;
|
|
|
|
mem_range->rangeno = 1;
|
|
|
|
bus->noMemRanges = 1;
|
|
|
|
bus->rangeMem = mem_range;
|
|
|
|
}
|
|
|
|
if (pfmem) {
|
2006-02-28 17:34:49 +03:00
|
|
|
pfmem_range = kzalloc(sizeof(*pfmem_range), GFP_KERNEL);
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
if (!pfmem_range)
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENOMEM;
|
PCI: Remove unnecessary messages for memory allocation failures
Per ebfdc40969f2 ("checkpatch: attempt to find unnecessary 'out of memory'
messages"), when a memory allocation fails, the memory subsystem emits
generic "out of memory" messages (see slab_out_of_memory() for some of this
logging). Therefore, additional error messages in the caller don't add
much value.
Remove messages that merely report "out of memory".
This preserves some messages that report additional information, e.g.,
allocation failures that mean we drop hotplug events.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
[bhelgaas: changelog, squash patches, make similar changes to acpiphp,
cpqphp, ibmphp, keep warning when dropping hotplug event]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
2017-12-29 14:15:16 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
pfmem_range->start = pfmem->start;
|
|
|
|
pfmem_range->end = pfmem->end;
|
|
|
|
pfmem_range->rangeno = 1;
|
|
|
|
bus->noPFMemRanges = 1;
|
|
|
|
bus->rangePFMem = pfmem_range;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* find the 1st available bus number for PPB to set as its secondary bus
|
|
|
|
* Parameters: bus_number of the primary bus
|
|
|
|
* Returns: bus_number of the secondary bus or 0xff in case of failure
|
|
|
|
*/
|
2015-12-28 00:21:11 +03:00
|
|
|
static u8 find_sec_number(u8 primary_busno, u8 slotno)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int min, max;
|
|
|
|
u8 busno;
|
|
|
|
struct bus_info *bus;
|
|
|
|
struct bus_node *bus_cur;
|
|
|
|
|
2015-12-28 00:21:11 +03:00
|
|
|
bus = ibmphp_find_same_bus_num(primary_busno);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!bus) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("cannot get slot range of the bus from the BIOS\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0xff;
|
|
|
|
}
|
|
|
|
max = bus->slot_max;
|
|
|
|
min = bus->slot_min;
|
|
|
|
if ((slotno > max) || (slotno < min)) {
|
2015-12-28 00:21:11 +03:00
|
|
|
err("got the wrong range\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0xff;
|
|
|
|
}
|
|
|
|
busno = (u8) (slotno - (u8) min);
|
|
|
|
busno += primary_busno + 0x01;
|
2015-12-28 00:21:11 +03:00
|
|
|
bus_cur = ibmphp_find_res_bus(busno);
|
2005-04-17 02:20:36 +04:00
|
|
|
/* either there is no such bus number, or there are no ranges, which
|
|
|
|
* can only happen if we removed the bridged device in previous load
|
|
|
|
* of the driver, and now only have the skeleton bus struct
|
|
|
|
*/
|
|
|
|
if ((!bus_cur) || (!(bus_cur->rangeIO) && !(bus_cur->rangeMem) && !(bus_cur->rangePFMem)))
|
|
|
|
return busno;
|
|
|
|
return 0xff;
|
|
|
|
}
|