Skip to content

Commit bb766ca

Browse files
hmynenityreld
authored andcommittedSep 18, 2024·
drmgr/SLOT: Add kernel interface support for device tree update
Use the following kernel interfaces for SLOT 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 <haren@linux.ibm.com> Signed-off-by: Tyrel Datwyler <tyreld@linux.ibm.com>
1 parent a2d1b70 commit bb766ca

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed
 

‎src/drmgr/drslot_chrp_slot.c

+17-8
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ release_slot(struct dr_node *slot)
7171
if (rc)
7272
return rc;
7373

74-
rc = remove_device_tree_nodes(slot->ofdt_path);
74+
if (kernel_dlpar_exists())
75+
rc = do_dt_kernel_dlpar(slot->drc_index, REMOVE);
76+
else
77+
rc = remove_device_tree_nodes(slot->ofdt_path);
7578
if (rc) {
7679
acquire_drc(slot->drc_index);
7780
return rc;
@@ -160,7 +163,6 @@ static int
160163
acquire_slot(char *drc_name, struct dr_node **slot)
161164
{
162165
struct dr_connector drc;
163-
struct of_node *of_nodes;
164166
char path[DR_PATH_MAX];
165167
int rc;
166168

@@ -180,14 +182,21 @@ acquire_slot(char *drc_name, struct dr_node **slot)
180182
if (rc)
181183
return rc;
182184

183-
of_nodes = configure_connector(drc.index);
184-
if (of_nodes == NULL) {
185-
release_drc(drc.index, PCI_DLPAR_DEV);
186-
return -1;
185+
if (kernel_dlpar_exists()) {
186+
rc = do_dt_kernel_dlpar(drc.index, ADD);
187+
} else {
188+
struct of_node *of_nodes;
189+
190+
of_nodes = configure_connector(drc.index);
191+
if (of_nodes == NULL) {
192+
release_drc(drc.index, PCI_DLPAR_DEV);
193+
return -1;
194+
}
195+
196+
rc = add_device_tree_nodes(path, of_nodes);
197+
free_of_node(of_nodes);
187198
}
188199

189-
rc = add_device_tree_nodes(path, of_nodes);
190-
free_of_node(of_nodes);
191200
if (rc) {
192201
say(ERROR, "add_device_tree_nodes failed at %s\n", path);
193202
release_drc(drc.index, PCI_DLPAR_DEV);

0 commit comments

Comments
 (0)
Please sign in to comment.