Release 4.16 drivers/pci/hotplug/rpaphp_core.c
// SPDX-License-Identifier: GPL-2.0+
/*
* PCI Hot Plug Controller Driver for RPA-compliant PPC64 platform.
* Copyright (C) 2003 Linda Xie <lxie@us.ibm.com>
*
* All rights reserved.
*
* Send feedback to <lxie@us.ibm.com>
*
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/pci.h>
#include <linux/pci_hotplug.h>
#include <linux/smp.h>
#include <linux/init.h>
#include <linux/vmalloc.h>
#include <asm/firmware.h>
#include <asm/eeh.h> /* for eeh_add_device() */
#include <asm/rtas.h> /* rtas_call */
#include <asm/pci-bridge.h> /* for pci_controller */
#include "../pci.h" /* for pci_add_new_bus */
/* and pci_do_scan_bus */
#include "rpaphp.h"
bool rpaphp_debug;
LIST_HEAD(rpaphp_slot_head);
EXPORT_SYMBOL_GPL(rpaphp_slot_head);
#define DRIVER_VERSION "0.1"
#define DRIVER_AUTHOR "Linda Xie <lxie@us.ibm.com>"
#define DRIVER_DESC "RPA HOT Plug PCI Controller Driver"
#define MAX_LOC_CODE 128
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL");
module_param_named(debug, rpaphp_debug, bool, 0644);
/**
* set_attention_status - set attention LED
* @hotplug_slot: target &hotplug_slot
* @value: LED control value
*
* echo 0 > attention -- set LED OFF
* echo 1 > attention -- set LED ON
* echo 2 > attention -- set LED ID(identify, light is blinking)
*/
static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 value)
{
int rc;
struct slot *slot = (struct slot *)hotplug_slot->private;
switch (value) {
case 0:
case 1:
case 2:
break;
default:
value = 1;
break;
}
rc = rtas_set_indicator(DR_INDICATOR, slot->index, value);
if (!rc)
hotplug_slot->info->attention_status = value;
return rc;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linda Xie | 54 | 65.85% | 2 | 50.00% |
Linas Vepstas | 21 | 25.61% | 1 | 25.00% |
Rolf Eike Beer | 7 | 8.54% | 1 | 25.00% |
Total | 82 | 100.00% | 4 | 100.00% |
/**
* get_power_status - get power status of a slot
* @hotplug_slot: slot to get status
* @value: pointer to store status
*/
static int get_power_status(struct hotplug_slot *hotplug_slot, u8 *value)
{
int retval, level;
struct slot *slot = (struct slot *)hotplug_slot->private;
retval = rtas_get_power_level(slot->power_domain, &level);
if (!retval)
*value = level;
return retval;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linda Xie | 35 | 59.32% | 2 | 50.00% |
Linas Vepstas | 17 | 28.81% | 1 | 25.00% |
Rolf Eike Beer | 7 | 11.86% | 1 | 25.00% |
Total | 59 | 100.00% | 4 | 100.00% |
/**
* get_attention_status - get attention LED status
* @hotplug_slot: slot to get status
* @value: pointer to store status
*/
static int get_attention_status(struct hotplug_slot *hotplug_slot, u8 *value)
{
struct slot *slot = (struct slot *)hotplug_slot->private;
*value = slot->hotplug_slot->info->attention_status;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linda Xie | 29 | 67.44% | 2 | 50.00% |
Rolf Eike Beer | 7 | 16.28% | 1 | 25.00% |
Linas Vepstas | 7 | 16.28% | 1 | 25.00% |
Total | 43 | 100.00% | 4 | 100.00% |
static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value)
{
struct slot *slot = (struct slot *)hotplug_slot->private;
int rc, state;
rc = rpaphp_get_sensor_state(slot, &state);
*value = NOT_VALID;
if (rc)
return rc;
if (state == EMPTY)
*value = EMPTY;
else if (state == PRESENT)
*value = slot->state;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linas Vepstas | 45 | 53.57% | 1 | 25.00% |
Linda Xie | 32 | 38.10% | 2 | 50.00% |
Rolf Eike Beer | 7 | 8.33% | 1 | 25.00% |
Total | 84 | 100.00% | 4 | 100.00% |
static enum pci_bus_speed get_max_bus_speed(struct slot *slot)
{
enum pci_bus_speed speed;
switch (slot->type) {
case 1:
case 2:
case 3:
case 4:
case 5:
case 6:
speed = PCI_SPEED_33MHz; /* speed for case 1-6 */
break;
case 7:
case 8:
speed = PCI_SPEED_66MHz;
break;
case 11:
case 14:
speed = PCI_SPEED_66MHz_PCIX;
break;
case 12:
case 15:
speed = PCI_SPEED_100MHz_PCIX;
break;
case 13:
case 16:
speed = PCI_SPEED_133MHz_PCIX;
break;
default:
speed = PCI_SPEED_UNKNOWN;
break;
}
return speed;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linda Xie | 87 | 86.14% | 2 | 66.67% |
Matthew Wilcox | 14 | 13.86% | 1 | 33.33% |
Total | 101 | 100.00% | 3 | 100.00% |
static int get_children_props(struct device_node *dn, const int **drc_indexes,
const int **drc_names, const int **drc_types,
const int **drc_power_domains)
{
const int *indexes, *names, *types, *domains;
indexes = of_get_property(dn, "ibm,drc-indexes", NULL);
names = of_get_property(dn, "ibm,drc-names", NULL);
types = of_get_property(dn, "ibm,drc-types", NULL);
domains = of_get_property(dn, "ibm,drc-power-domains", NULL);
if (!indexes || !names || !types || !domains) {
/* Slot does not have dynamically-removable children */
return -EINVAL;
}
if (drc_indexes)
*drc_indexes = indexes;
if (drc_names)
/* &drc_names[1] contains NULL terminated slot names */
*drc_names = names;
if (drc_types)
/* &drc_types[1] contains NULL terminated slot types */
*drc_types = types;
if (drc_power_domains)
*drc_power_domains = domains;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linda Xie | 74 | 47.74% | 3 | 42.86% |
John Rose | 71 | 45.81% | 2 | 28.57% |
Jeremy Kerr | 6 | 3.87% | 1 | 14.29% |
Stephen Rothwell | 4 | 2.58% | 1 | 14.29% |
Total | 155 | 100.00% | 7 | 100.00% |
/* Verify the existence of 'drc_name' and/or 'drc_type' within the
* current node. First obtain it's my-drc-index property. Next,
* obtain the DRC info from it's parent. Use the my-drc-index for
* correlation, and obtain/validate the requested properties.
*/
static int rpaphp_check_drc_props_v1(struct device_node *dn, char *drc_name,
char *drc_type, unsigned int my_index)
{
char *name_tmp, *type_tmp;
const int *indexes, *names;
const int *types, *domains;
int i, rc;
rc = get_children_props(dn->parent, &indexes, &names, &types, &domains);
if (rc < 0) {
return -EINVAL;
}
name_tmp = (char *) &names[1];
type_tmp = (char *) &types[1];
/* Iterate through parent properties, looking for my-drc-index */
for (i = 0; i < be32_to_cpu(indexes[0]); i++) {
if ((unsigned int) indexes[i + 1] == my_index)
break;
name_tmp += (strlen(name_tmp) + 1);
type_tmp += (strlen(type_tmp) + 1);
}
if (((drc_name == NULL) || (drc_name && !strcmp(drc_name, name_tmp))) &&
((drc_type == NULL) || (drc_type && !strcmp(drc_type, type_tmp))))
return 0;
return -EINVAL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
John Rose | 125 | 57.60% | 2 | 25.00% |
Michael Bringmann | 81 | 37.33% | 1 | 12.50% |
Linda Xie | 4 | 1.84% | 2 | 25.00% |
Laurent Dufour | 3 | 1.38% | 1 | 12.50% |
Paul Mackerras | 2 | 0.92% | 1 | 12.50% |
Jeremy Kerr | 2 | 0.92% | 1 | 12.50% |
Total | 217 | 100.00% | 8 | 100.00% |
static int rpaphp_check_drc_props_v2(struct device_node *dn, char *drc_name,
char *drc_type, unsigned int my_index)
{
struct property *info;
unsigned int entries;
struct of_drc_info drc;
const __be32 *value;
char cell_drc_name[MAX_DRC_NAME_LEN];
int j, fndit;
info = of_find_property(dn->parent, "ibm,drc-info", NULL);
if (info == NULL)
return -EINVAL;
value = of_prop_next_u32(info, NULL, &entries);
if (!value)
return -EINVAL;
for (j = 0; j < entries; j++) {
of_read_drc_info_cell(&info, &value, &drc);
/* Should now know end of current entry */
if (my_index > drc.last_drc_index)
continue;
fndit = 1;
break;
}
/* Found it */
if (fndit)
sprintf(cell_drc_name, "%s%d", drc.drc_name_prefix,
my_index);
if (((drc_name == NULL) ||
(drc_name && !strcmp(drc_name, cell_drc_name))) &&
((drc_type == NULL) ||
(drc_type && !strcmp(drc_type, drc.drc_type))))
return 0;
return -EINVAL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael Bringmann | 176 | 85.02% | 1 | 33.33% |
John Rose | 29 | 14.01% | 1 | 33.33% |
Laurent Dufour | 2 | 0.97% | 1 | 33.33% |
Total | 207 | 100.00% | 3 | 100.00% |
int rpaphp_check_drc_props(struct device_node *dn, char *drc_name,
char *drc_type)
{
const unsigned int *my_index;
my_index = of_get_property(dn, "ibm,my-drc-index", NULL);
if (!my_index) {
/* Node isn't DLPAR/hotplug capable */
return -EINVAL;
}
if (firmware_has_feature(FW_FEATURE_DRC_INFO))
return rpaphp_check_drc_props_v2(dn, drc_name, drc_type,
*my_index);
else
return rpaphp_check_drc_props_v1(dn, drc_name, drc_type,
*my_index);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael Bringmann | 76 | 93.83% | 1 | 25.00% |
Paul Mackerras | 2 | 2.47% | 1 | 25.00% |
Linda Xie | 2 | 2.47% | 1 | 25.00% |
John Rose | 1 | 1.23% | 1 | 25.00% |
Total | 81 | 100.00% | 4 | 100.00% |
EXPORT_SYMBOL_GPL(rpaphp_check_drc_props);
static int is_php_type(char *drc_type)
{
unsigned long value;
char *endptr;
/* PCI Hotplug nodes have an integer for drc_type */
value = simple_strtoul(drc_type, &endptr, 10);
if (endptr == drc_type)
return 0;
return 1;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
John Rose | 43 | 100.00% | 1 | 100.00% |
Total | 43 | 100.00% | 1 | 100.00% |
/**
* is_php_dn() - return 1 if this is a hotpluggable pci slot, else 0
* @dn: target &device_node
* @indexes: passed to get_children_props()
* @names: passed to get_children_props()
* @types: returned from get_children_props()
* @power_domains:
*
* This routine will return true only if the device node is
* a hotpluggable slot. This routine will return false
* for built-in pci slots (even when the built-in slots are
* dlparable.)
*/
static int is_php_dn(struct device_node *dn, const int **indexes,
const int **names, const int **types, const int **power_domains)
{
const int *drc_types;
int rc;
rc = get_children_props(dn, indexes, names, &drc_types, power_domains);
if (rc < 0)
return 0;
if (!is_php_type((char *) &drc_types[1]))
return 0;
*types = drc_types;
return 1;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linda Xie | 45 | 47.37% | 3 | 37.50% |
John Rose | 37 | 38.95% | 3 | 37.50% |
Linas Vepstas | 8 | 8.42% | 1 | 12.50% |
Jeremy Kerr | 5 | 5.26% | 1 | 12.50% |
Total | 95 | 100.00% | 8 | 100.00% |
/**
* rpaphp_add_slot -- declare a hotplug slot to the hotplug subsystem.
* @dn: device node of slot
*
* This subroutine will register a hotpluggable slot with the
* PCI hotplug infrastructure. This routine is typically called
* during boot time, if the hotplug slots are present at boot time,
* or is called later, by the dlpar add code, if the slot is
* being dynamically added during runtime.
*
* If the device node points at an embedded (built-in) slot, this
* routine will just return without doing anything, since embedded
* slots cannot be hotplugged.
*
* To remove a slot, it suffices to call rpaphp_deregister_slot().
*/
int rpaphp_add_slot(struct device_node *dn)
{
struct slot *slot;
int retval = 0;
int i;
const int *indexes, *names, *types, *power_domains;
char *name, *type;
if (!dn->name || strcmp(dn->name, "pci"))
return 0;
/* If this is not a hotplug slot, return without doing anything. */
if (!is_php_dn(dn, &indexes, &names, &types, &power_domains))
return 0;
dbg("Entry %s: dn=%pOF\n", __func__, dn);
/* register PCI devices */
name = (char *) &names[1];
type = (char *) &types[1];
for (i = 0; i < be32_to_cpu(indexes[0]); i++) {
int index;
index = be32_to_cpu(indexes[i + 1]);
slot = alloc_slot_struct(dn, index, name,
be32_to_cpu(power_domains[i + 1]));
if (!slot)
return -ENOMEM;
slot->type = simple_strtoul(type, NULL, 10);
dbg("Found drc-index:0x%x drc-name:%s drc-type:%s\n",
index, name, type);
retval = rpaphp_enable_slot(slot);
if (!retval)
retval = rpaphp_register_slot(slot);
if (retval)
dealloc_slot_struct(slot);
name += strlen(name) + 1;
type += strlen(type) + 1;
}
dbg("%s - Exit: rc[%d]\n", __func__, retval);
/* XXX FIXME: reports a failure only if last entry in loop failed */
return retval;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linda Xie | 177 | 65.56% | 3 | 21.43% |
Linas Vepstas | 66 | 24.44% | 6 | 42.86% |
Laurent Dufour | 21 | 7.78% | 1 | 7.14% |
Harvey Harrison | 2 | 0.74% | 1 | 7.14% |
John Rose | 2 | 0.74% | 1 | 7.14% |
Jeremy Kerr | 1 | 0.37% | 1 | 7.14% |
Rob Herring | 1 | 0.37% | 1 | 7.14% |
Total | 270 | 100.00% | 14 | 100.00% |
EXPORT_SYMBOL_GPL(rpaphp_add_slot);
static void __exit cleanup_slots(void)
{
struct slot *slot, *next;
/*
* Unregister all of our slots with the pci_hotplug subsystem,
* and free up all memory that we had allocated.
* memory will be freed in release_slot callback.
*/
list_for_each_entry_safe(slot, next, &rpaphp_slot_head,
rpaphp_slot_list) {
list_del(&slot->rpaphp_slot_list);
pci_hp_deregister(slot->hotplug_slot);
}
return;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linda Xie | 36 | 78.26% | 2 | 40.00% |
Geliang Tang | 8 | 17.39% | 1 | 20.00% |
Björn Helgaas | 1 | 2.17% | 1 | 20.00% |
Rolf Eike Beer | 1 | 2.17% | 1 | 20.00% |
Total | 46 | 100.00% | 5 | 100.00% |
static int __init rpaphp_init(void)
{
struct device_node *dn;
info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
for_each_node_by_name(dn, "pci")
rpaphp_add_slot(dn);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linda Xie | 18 | 50.00% | 1 | 33.33% |
John Rose | 16 | 44.44% | 1 | 33.33% |
Grant C. Likely | 2 | 5.56% | 1 | 33.33% |
Total | 36 | 100.00% | 3 | 100.00% |
static void __exit rpaphp_exit(void)
{
cleanup_slots();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linda Xie | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
static int enable_slot(struct hotplug_slot *hotplug_slot)
{
struct slot *slot = (struct slot *)hotplug_slot->private;
int state;
int retval;
if (slot->state == CONFIGURED)
return 0;
retval = rpaphp_get_sensor_state(slot, &state);
if (retval)
return retval;
if (state == PRESENT) {
pci_lock_rescan_remove();
pci_hp_add_devices(slot->bus);
pci_unlock_rescan_remove();
slot->state = CONFIGURED;
} else if (state == EMPTY) {
slot->state = EMPTY;
} else {
err("%s: slot[%s] is in invalid state\n", __func__, slot->name);
slot->state = NOT_VALID;
return -EINVAL;
}
slot->bus->max_bus_speed = get_max_bus_speed(slot);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linas Vepstas | 88 | 63.31% | 2 | 28.57% |
Linda Xie | 32 | 23.02% | 1 | 14.29% |
Matthew Wilcox | 11 | 7.91% | 1 | 14.29% |
Rafael J. Wysocki | 6 | 4.32% | 1 | 14.29% |
Harvey Harrison | 1 | 0.72% | 1 | 14.29% |
Gavin Shan | 1 | 0.72% | 1 | 14.29% |
Total | 139 | 100.00% | 7 | 100.00% |
static int disable_slot(struct hotplug_slot *hotplug_slot)
{
struct slot *slot = (struct slot *)hotplug_slot->private;
if (slot->state == NOT_CONFIGURED)
return -EINVAL;
pci_lock_rescan_remove();
pci_hp_remove_devices(slot->bus);
pci_unlock_rescan_remove();
vm_unmap_aliases();
slot->state = NOT_CONFIGURED;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linas Vepstas | 40 | 64.52% | 4 | 44.44% |
Linda Xie | 12 | 19.35% | 2 | 22.22% |
Rafael J. Wysocki | 6 | 9.68% | 1 | 11.11% |
Benjamin Herrenschmidt | 3 | 4.84% | 1 | 11.11% |
Gavin Shan | 1 | 1.61% | 1 | 11.11% |
Total | 62 | 100.00% | 9 | 100.00% |
struct hotplug_slot_ops rpaphp_hotplug_slot_ops = {
.enable_slot = enable_slot,
.disable_slot = disable_slot,
.set_attention_status = set_attention_status,
.get_power_status = get_power_status,
.get_attention_status = get_attention_status,
.get_adapter_status = get_adapter_status,
};
module_init(rpaphp_init);
module_exit(rpaphp_exit);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linda Xie | 737 | 38.83% | 3 | 6.38% |
Michael Bringmann | 338 | 17.81% | 1 | 2.13% |
Linas Vepstas | 329 | 17.33% | 15 | 31.91% |
John Rose | 324 | 17.07% | 5 | 10.64% |
Rolf Eike Beer | 30 | 1.58% | 3 | 6.38% |
Laurent Dufour | 26 | 1.37% | 1 | 2.13% |
Matthew Wilcox | 25 | 1.32% | 1 | 2.13% |
Ryan Desfosses | 14 | 0.74% | 1 | 2.13% |
Jeremy Kerr | 14 | 0.74% | 1 | 2.13% |
Rafael J. Wysocki | 12 | 0.63% | 1 | 2.13% |
Geliang Tang | 8 | 0.42% | 1 | 2.13% |
Benjamin Herrenschmidt | 6 | 0.32% | 1 | 2.13% |
Björn Helgaas | 4 | 0.21% | 2 | 4.26% |
Paul Mackerras | 4 | 0.21% | 1 | 2.13% |
Andrew Morton | 4 | 0.21% | 1 | 2.13% |
Stephen Rothwell | 4 | 0.21% | 1 | 2.13% |
Kristen Carlson Accardi | 4 | 0.21% | 1 | 2.13% |
Harvey Harrison | 3 | 0.16% | 1 | 2.13% |
Greg Kroah-Hartman | 3 | 0.16% | 1 | 2.13% |
Randy Dunlap | 3 | 0.16% | 1 | 2.13% |
Grant C. Likely | 2 | 0.11% | 1 | 2.13% |
Gavin Shan | 2 | 0.11% | 1 | 2.13% |
Rob Herring | 1 | 0.05% | 1 | 2.13% |
Rusty Russell | 1 | 0.05% | 1 | 2.13% |
Total | 1898 | 100.00% | 47 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.