Skip to content

Commit a2d1b70

Browse files
hmynenityreld
authored andcommitted
drmgr/pci: Add kernel interface support for device tree update
Use the following kernel interfaces for PCI device type to update the device tree if this feature is enabled in the kernel. dt add index <DRC index> --> for IO add dt remove index <DRC index> --> for IO remove Signed-off-by: Haren Myneni <[email protected]> Signed-off-by: Tyrel Datwyler <[email protected]>
1 parent 9aaa1a6 commit a2d1b70

File tree

1 file changed

+22
-10
lines changed

1 file changed

+22
-10
lines changed

src/drmgr/drslot_chrp_pci.c

+22-10
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,6 @@ static int add_work(struct dr_node *node, bool partner_device)
377377
/* on when */
378378
int iso_state = ISOLATE; /* Tells us isolation state after */
379379
int rc;
380-
struct of_node *new_nodes;/* nodes returned from configure_connector */
381380

382381
/*
383382
* Already checked the card presence for the original device
@@ -445,16 +444,26 @@ static int add_work(struct dr_node *node, bool partner_device)
445444
* the return status requires a message, print it out
446445
* and exit, otherwise, add the nodes to the OF tree.
447446
*/
448-
new_nodes = configure_connector(node->drc_index);
449-
if (new_nodes == NULL) {
450-
rtas_set_indicator(ISOLATION_STATE, node->drc_index, ISOLATE);
451-
set_power(node->drc_power, POWER_OFF);
452-
return -1;
447+
if (kernel_dlpar_exists()) {
448+
rc = do_dt_kernel_dlpar(node->drc_index, ADD);
449+
} else {
450+
struct of_node *new_nodes; /* nodes returned from */
451+
/* configure_connector */
452+
453+
new_nodes = configure_connector(node->drc_index);
454+
if (new_nodes == NULL) {
455+
rtas_set_indicator(ISOLATION_STATE, node->drc_index,
456+
ISOLATE);
457+
set_power(node->drc_power, POWER_OFF);
458+
return -1;
459+
}
460+
461+
say(DEBUG, "Adding %s to %s\n", new_nodes->name,
462+
node->ofdt_path);
463+
rc = add_device_tree_nodes(node->ofdt_path, new_nodes);
464+
free_of_node(new_nodes);
453465
}
454466

455-
say(DEBUG, "Adding %s to %s\n", new_nodes->name, node->ofdt_path);
456-
rc = add_device_tree_nodes(node->ofdt_path, new_nodes);
457-
free_of_node(new_nodes);
458467
if (rc) {
459468
say(DEBUG, "add_device_tree_nodes failed at %s\n",
460469
node->ofdt_path);
@@ -786,7 +795,10 @@ static int remove_work(struct dr_node *node, bool partner_device)
786795
* the device tree.
787796
*/
788797
for (child = node->children; child; child = child->next) {
789-
rc = remove_device_tree_nodes(child->ofdt_path);
798+
if (kernel_dlpar_exists())
799+
rc = do_dt_kernel_dlpar(child->drc_index, REMOVE);
800+
else
801+
rc = remove_device_tree_nodes(child->ofdt_path);
790802
if (rc) {
791803
say(ERROR, "%s", sw_error);
792804
rtas_set_indicator(ISOLATION_STATE, node->drc_index,

0 commit comments

Comments
 (0)