Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * PCI Express Hot Plug Controller Driver |
| 3 | * |
| 4 | * Copyright (C) 1995,2001 Compaq Computer Corporation |
| 5 | * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com) |
| 6 | * Copyright (C) 2001 IBM Corp. |
| 7 | * Copyright (C) 2003-2004 Intel Corporation |
| 8 | * |
| 9 | * All rights reserved. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2 of the License, or (at |
| 14 | * your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, but |
| 17 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or |
| 19 | * NON INFRINGEMENT. See the GNU General Public License for more |
| 20 | * details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 25 | * |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 26 | * Send feedback to <greg@kroah.com>, <kristen.c.accardi@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | * |
| 28 | */ |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/module.h> |
| 31 | #include <linux/kernel.h> |
| 32 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/pci.h> |
| 34 | #include "../pci.h" |
| 35 | #include "pciehp.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 37 | int pciehp_configure_device(struct slot *p_slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | { |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 39 | struct pci_dev *dev; |
Yinghai Lu | 9789ac9 | 2010-01-22 01:02:26 -0800 | [diff] [blame] | 40 | struct pci_dev *bridge = p_slot->ctrl->pcie->port; |
| 41 | struct pci_bus *parent = bridge->subordinate; |
Yijing Wang | ba518e3 | 2013-01-15 11:12:19 +0800 | [diff] [blame] | 42 | int num; |
Taku Izumi | 7f2feec | 2008-09-05 12:11:26 +0900 | [diff] [blame] | 43 | struct controller *ctrl = p_slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Kenji Kaneshige | d689f7e | 2009-09-15 17:26:56 +0900 | [diff] [blame] | 45 | dev = pci_get_slot(parent, PCI_DEVFN(0, 0)); |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 46 | if (dev) { |
Taku Izumi | 18b341b | 2008-10-23 11:47:32 +0900 | [diff] [blame] | 47 | ctrl_err(ctrl, "Device %s already exists " |
Kenji Kaneshige | d689f7e | 2009-09-15 17:26:56 +0900 | [diff] [blame] | 48 | "at %04x:%02x:00, cannot hot-add\n", pci_name(dev), |
| 49 | pci_domain_nr(parent), parent->number); |
Kenji Kaneshige | 56bfada | 2006-05-12 11:22:24 +0900 | [diff] [blame] | 50 | pci_dev_put(dev); |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 51 | return -EINVAL; |
| 52 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Kenji Kaneshige | d689f7e | 2009-09-15 17:26:56 +0900 | [diff] [blame] | 54 | num = pci_scan_slot(parent, PCI_DEVFN(0, 0)); |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 55 | if (num == 0) { |
Taku Izumi | 7f2feec | 2008-09-05 12:11:26 +0900 | [diff] [blame] | 56 | ctrl_err(ctrl, "No new device found\n"); |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 57 | return -ENODEV; |
| 58 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
Yijing Wang | ba518e3 | 2013-01-15 11:12:19 +0800 | [diff] [blame] | 60 | list_for_each_entry(dev, &parent->devices, bus_list) |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 61 | if ((dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) || |
Yinghai Lu | c6da81a | 2012-05-17 18:58:41 -0700 | [diff] [blame] | 62 | (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)) |
| 63 | pci_hp_add_bridge(dev); |
Yinghai Lu | 9789ac9 | 2010-01-22 01:02:26 -0800 | [diff] [blame] | 64 | |
| 65 | pci_assign_unassigned_bridge_resources(bridge); |
| 66 | |
Yijing Wang | ba518e3 | 2013-01-15 11:12:19 +0800 | [diff] [blame] | 67 | list_for_each_entry(dev, &parent->devices, bus_list) { |
| 68 | if ((dev->class >> 16) == PCI_BASE_CLASS_DISPLAY) |
Yinghai Lu | 9789ac9 | 2010-01-22 01:02:26 -0800 | [diff] [blame] | 69 | continue; |
Yijing Wang | ba518e3 | 2013-01-15 11:12:19 +0800 | [diff] [blame] | 70 | |
Bjorn Helgaas | d569c74 | 2009-09-14 16:35:25 -0600 | [diff] [blame] | 71 | pci_configure_slot(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | } |
| 73 | |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 74 | pci_bus_add_devices(parent); |
Yinghai Lu | 9789ac9 | 2010-01-22 01:02:26 -0800 | [diff] [blame] | 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | return 0; |
| 77 | } |
| 78 | |
rajesh.shah@intel.com | ca22a5e | 2005-10-31 16:20:08 -0800 | [diff] [blame] | 79 | int pciehp_unconfigure_device(struct slot *p_slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
Kristen Carlson Accardi | 1cf53d5 | 2007-08-09 16:09:31 -0700 | [diff] [blame] | 81 | int ret, rc = 0; |
rajesh.shah@intel.com | ca22a5e | 2005-10-31 16:20:08 -0800 | [diff] [blame] | 82 | u8 bctl = 0; |
Kristen Carlson Accardi | 1cf53d5 | 2007-08-09 16:09:31 -0700 | [diff] [blame] | 83 | u8 presence = 0; |
Yijing Wang | ba518e3 | 2013-01-15 11:12:19 +0800 | [diff] [blame] | 84 | struct pci_dev *dev, *temp; |
Kenji Kaneshige | 385e249 | 2009-09-15 17:30:14 +0900 | [diff] [blame] | 85 | struct pci_bus *parent = p_slot->ctrl->pcie->port->subordinate; |
Kenji Kaneshige | 2326e2b | 2007-12-20 19:46:33 +0900 | [diff] [blame] | 86 | u16 command; |
Taku Izumi | 7f2feec | 2008-09-05 12:11:26 +0900 | [diff] [blame] | 87 | struct controller *ctrl = p_slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Kenji Kaneshige | d689f7e | 2009-09-15 17:26:56 +0900 | [diff] [blame] | 89 | ctrl_dbg(ctrl, "%s: domain:bus:dev = %04x:%02x:00\n", |
| 90 | __func__, pci_domain_nr(parent), parent->number); |
Kenji Kaneshige | 82a9e79 | 2009-09-15 17:30:48 +0900 | [diff] [blame] | 91 | ret = pciehp_get_adapter_status(p_slot, &presence); |
Kenji Kaneshige | 2326e2b | 2007-12-20 19:46:33 +0900 | [diff] [blame] | 92 | if (ret) |
| 93 | presence = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
Yinghai Lu | 29ed1f2 | 2013-07-19 12:14:16 -0700 | [diff] [blame] | 95 | /* |
| 96 | * Stopping an SR-IOV PF device removes all the associated VFs, |
| 97 | * which will update the bus->devices list and confuse the |
| 98 | * iterator. Therefore, iterate in reverse so we remove the VFs |
| 99 | * first, then the PF. We do the same in pci_stop_bus_device(). |
| 100 | */ |
| 101 | list_for_each_entry_safe_reverse(dev, temp, &parent->devices, |
| 102 | bus_list) { |
Yijing Wang | ba518e3 | 2013-01-15 11:12:19 +0800 | [diff] [blame] | 103 | pci_dev_get(dev); |
| 104 | if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE && presence) { |
| 105 | pci_read_config_byte(dev, PCI_BRIDGE_CONTROL, &bctl); |
Kenji Kaneshige | 2326e2b | 2007-12-20 19:46:33 +0900 | [diff] [blame] | 106 | if (bctl & PCI_BRIDGE_CTL_VGA) { |
Taku Izumi | 7f2feec | 2008-09-05 12:11:26 +0900 | [diff] [blame] | 107 | ctrl_err(ctrl, |
| 108 | "Cannot remove display device %s\n", |
Yijing Wang | ba518e3 | 2013-01-15 11:12:19 +0800 | [diff] [blame] | 109 | pci_name(dev)); |
| 110 | pci_dev_put(dev); |
Praveen Kalamegham | 01b666d | 2010-05-20 15:32:22 -0500 | [diff] [blame] | 111 | rc = -EINVAL; |
Praveen Kalamegham | ac81860 | 2010-05-19 17:03:12 -0500 | [diff] [blame] | 112 | break; |
rajesh.shah@intel.com | ca22a5e | 2005-10-31 16:20:08 -0800 | [diff] [blame] | 113 | } |
| 114 | } |
Yijing Wang | ba518e3 | 2013-01-15 11:12:19 +0800 | [diff] [blame] | 115 | pci_stop_and_remove_bus_device(dev); |
Kenji Kaneshige | 2326e2b | 2007-12-20 19:46:33 +0900 | [diff] [blame] | 116 | /* |
| 117 | * Ensure that no new Requests will be generated from |
| 118 | * the device. |
| 119 | */ |
| 120 | if (presence) { |
Yijing Wang | ba518e3 | 2013-01-15 11:12:19 +0800 | [diff] [blame] | 121 | pci_read_config_word(dev, PCI_COMMAND, &command); |
Kenji Kaneshige | 2326e2b | 2007-12-20 19:46:33 +0900 | [diff] [blame] | 122 | command &= ~(PCI_COMMAND_MASTER | PCI_COMMAND_SERR); |
| 123 | command |= PCI_COMMAND_INTX_DISABLE; |
Yijing Wang | ba518e3 | 2013-01-15 11:12:19 +0800 | [diff] [blame] | 124 | pci_write_config_word(dev, PCI_COMMAND, command); |
Kenji Kaneshige | 2326e2b | 2007-12-20 19:46:33 +0900 | [diff] [blame] | 125 | } |
Yijing Wang | ba518e3 | 2013-01-15 11:12:19 +0800 | [diff] [blame] | 126 | pci_dev_put(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | } |
Kenji Kaneshige | 9fe8164 | 2007-08-09 16:09:37 -0700 | [diff] [blame] | 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | return rc; |
| 130 | } |