[go: nahoru, domu]

Searched defs:phandle (Results 1 - 14 of 14) sorted by relevance

/drivers/gpu/drm/nouveau/core/core/
H A Dhandle.c102 struct nouveau_handle **phandle)
149 *phandle = handle;
100 nouveau_handle_create(struct nouveau_object *parent, u32 _parent, u32 _handle, struct nouveau_object *object, struct nouveau_handle **phandle) argument
/drivers/of/
H A Dresolver.c22 /* illegal phandle value (set when unresolved) */
51 * Find live tree's maximum phandle value.
53 static phandle of_get_tree_max_phandle(void)
56 phandle phandle; local
61 phandle = 0;
63 if (node->phandle != OF_PHANDLE_ILLEGAL &&
64 node->phandle > phandle)
65 phandle
82 phandle phandle; local
116 phandle phandle; local
248 phandle phandle, phandle_delta; local
[all...]
H A Ddynamic.c105 const __be32 *phandle; local
111 phandle = __of_get_property(np, "phandle", &sz);
112 if (!phandle)
113 phandle = __of_get_property(np, "linux,phandle", &sz);
114 if (IS_ENABLED(PPC_PSERIES) && !phandle)
115 phandle = __of_get_property(np, "ibm,phandle", &sz);
116 np->phandle
[all...]
H A Dbase.c1013 * of_find_node_by_phandle - Find a node given a phandle
1014 * @handle: phandle of the node to find
1019 struct device_node *of_find_node_by_phandle(phandle handle)
1029 if (np->phandle == handle)
1375 phandle phandle; local
1377 /* Retrieve the phandle list property */
1389 * If phandle is 0, then it is an empty entry with no
1392 phandle = be32_to_cpup(list++);
1393 if (phandle) {
[all...]
/drivers/pinctrl/
H A Ddevicetree.c184 phandle phandle; local
224 phandle = be32_to_cpup(list++);
227 np_config = of_find_node_by_phandle(phandle);
230 "prop %s index %i invalid phandle\n",
H A Dpinctrl-rockchip.c1113 const __be32 *phandle; local
1124 phandle = list++;
1125 if (!phandle)
1128 np_config = of_find_node_by_phandle(be32_to_cpup(phandle));
/drivers/usb/phy/
H A Dphy.c151 * devm_usb_get_phy_by_phandle - find the USB PHY by phandle
153 * @phandle - name of the property holding the phy phandle value
156 * Returns the phy driver associated with the given phandle value,
158 * -EPROBE_DEFER if there is a phandle to the phy, but the device is
166 const char *phandle, u8 index)
177 node = of_parse_phandle(dev->of_node, phandle, index);
179 dev_dbg(dev, "failed to get %s phandle in %s node\n", phandle,
165 devm_usb_get_phy_by_phandle(struct device *dev, const char *phandle, u8 index) argument
/drivers/acpi/
H A Dnuma.c322 acpi_handle phandle = h; local
325 handle = phandle;
329 status = acpi_get_parent(handle, &phandle);
H A Dpci_root.c285 acpi_handle phandle; local
295 phandle = handle;
296 while (!acpi_is_root_bridge(phandle)) {
302 node->handle = phandle;
305 status = acpi_get_parent(phandle, &phandle);
310 root = acpi_pci_find_root(phandle);
H A Dscan.c1716 acpi_handle phandle; local
1722 if (ACPI_FAILURE(acpi_get_parent(handle, &phandle)))
1725 return acpi_ata_match(phandle);
/drivers/pci/
H A Dpci-acpi.c248 acpi_handle handle, phandle; local
273 status = acpi_get_parent(handle, &phandle);
276 handle = phandle;
/drivers/pci/hotplug/
H A Dacpiphp_ibm.c388 acpi_handle *phandle = (acpi_handle *)context; local
405 *phandle = handle;
H A Dsgi_hotplug.c407 acpi_handle phandle; local
412 phandle = acpi_device_handle(PCI_CONTROLLER(slot->pci_bus)->companion);
414 if (acpi_bus_get_device(phandle, &pdevice)) {
428 phandle, chandle,
494 acpi_handle phandle; local
500 phandle = acpi_device_handle(PCI_CONTROLLER(slot->pci_bus)->companion);
511 phandle, chandle,
/drivers/net/ethernet/ibm/emac/
H A Dcore.c2271 u32 phandle; member in struct:emac_depentry
2293 if (deps[i].phandle == 0) {
2301 deps[i].phandle = 0;
2309 deps[i].node = of_find_node_by_phandle(deps[i].phandle);
2358 deps[EMAC_DEP_MAL_IDX].phandle = dev->mal_ph;
2359 deps[EMAC_DEP_ZMII_IDX].phandle = dev->zmii_ph;
2360 deps[EMAC_DEP_RGMII_IDX].phandle = dev->rgmii_ph;
2362 deps[EMAC_DEP_TAH_IDX].phandle = dev->tah_ph;
2364 deps[EMAC_DEP_MDIO_IDX].phandle = dev->mdio_ph;
2366 deps[EMAC_DEP_PREV_IDX].phandle
[all...]

Completed in 302 milliseconds