Searched refs:resource_node (Results 1 – 3 of 3) sorted by relevance
/Linux-v6.6/drivers/pci/hotplug/ |
D | ibmphp.h | 337 struct resource_node *firstIO; /* first IO resource on the Bus */ 338 struct resource_node *firstMem; /* first memory resource on the Bus */ 339 struct resource_node *firstPFMem; /* first prefetchable memory resource on the Bus */ 340 struct resource_node *firstPFMemFromMem; /* when run out of pfmem available, taking from Mem */ 344 struct resource_node { struct 354 struct resource_node *next; argument 355 struct resource_node *nextRange; /* for the other mem range on bus */ argument 369 int ibmphp_add_resource(struct resource_node *); 370 int ibmphp_remove_resource(struct resource_node *); 371 int ibmphp_find_resource(struct bus_node *, u32, struct resource_node **, int); [all …]
|
D | ibmphp_res.c | 56 static struct resource_node * __init alloc_resources(struct ebda_pci_rsrc *curr) in alloc_resources() 58 struct resource_node *rs; in alloc_resources() 65 rs = kzalloc(sizeof(struct resource_node), GFP_KERNEL); in alloc_resources() 187 struct resource_node *new_io = NULL; in ibmphp_rsrc_init() 188 struct resource_node *new_mem = NULL; in ibmphp_rsrc_init() 189 struct resource_node *new_pfmem = NULL; in ibmphp_rsrc_init() 445 struct resource_node *res = NULL; in update_resources() 487 static void fix_me(struct resource_node *res, struct bus_node *bus_cur, struct range_node *range) in fix_me() 545 struct resource_node *res; in fix_resources() 575 int ibmphp_add_resource(struct resource_node *res) in ibmphp_add_resource() [all …]
|
D | ibmphp_pci.c | 26 …tic int add_new_bus(struct bus_node *, struct resource_node *, struct resource_node *, struct reso… 344 struct resource_node *io[6]; in configure_device() 345 struct resource_node *mem[6]; in configure_device() 346 struct resource_node *mem_tmp; in configure_device() 347 struct resource_node *pfmem[6]; in configure_device() 387 io[count] = kzalloc(sizeof(struct resource_node), GFP_KERNEL); in configure_device() 424 pfmem[count] = kzalloc(sizeof(struct resource_node), GFP_KERNEL); in configure_device() 488 mem[count] = kzalloc(sizeof(struct resource_node), GFP_KERNEL); in configure_device() 559 struct resource_node *io = NULL; in configure_bridge() 560 struct resource_node *bus_io[2] = {NULL, NULL}; in configure_bridge() [all …]
|