Lines Matching +full:device +full:- +full:addr
8 * SPDX-License-Identifier: GPL-2.0+
19 * devfdt_get_addr() - Get the reg property of a device
21 * @dev: Pointer to a device
23 * @return addr
28 * devfdt_get_addr_ptr() - Return pointer to the address of the reg property
29 * of a device
31 * @dev: Pointer to a device
33 * @return Pointer to addr, or NULL if there is no such property
38 * devfdt_remap_addr_index() - Return indexed pointer to the memory-mapped
39 * I/O address of the reg property of a device
40 * @index: the 'reg' property can hold a list of <addr, size> pairs
43 * @dev: Pointer to a device
45 * Return: Pointer to addr, or NULL if there is no such property
50 * devfdt_map_physmem() - Read device address from reg property of the
51 * device node and map the address into CPU address
54 * @dev: Pointer to device
57 * @return mapped address, or NULL if the device does not have reg
63 * devfdt_get_addr_index() - Get the indexed reg property of a device
65 * @dev: Pointer to a device
66 * @index: the 'reg' property can hold a list of <addr, size> pairs
69 * @return addr
74 * devfdt_get_addr_size_index() - Get the indexed reg property of a device
76 * Returns the address and size specified in the 'reg' property of a device.
78 * @dev: Pointer to a device
79 * @index: the 'reg' property can hold a list of <addr, size> pairs
81 * @size: Pointer to size varible - this function returns the size
84 * @return addr
90 * devfdt_get_addr_name() - Get the reg property of a device, indexed by name
92 * @dev: Pointer to a device
93 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
94 * 'reg-names' property providing named-based identification. @index
95 * indicates the value to search for in 'reg-names'.
97 * @return addr
102 * dm_set_translation_offset() - Set translation offset
113 * dm_get_translation_offset() - Get translation offset
118 * @return translation offset for the device address (0 as default).