diff options
| author | Tom Rini <[email protected]> | 2016-12-03 19:43:51 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-12-03 19:43:51 -0500 |
| commit | 73eed452b9c9827474c0789c30729dca6fcf061d (patch) | |
| tree | b33a39a41b7b2891b0171f79ea9b5599658884c3 /include/dm | |
| parent | bfb380b30ad2d678c09037560abb6f09a5e9c9b6 (diff) | |
| parent | a2558e8729831e0bcef634ea2440e60425ef0ff6 (diff) | |
Merge branch 'master' of git://www.denx.de/git/u-boot-dm
Diffstat (limited to 'include/dm')
| -rw-r--r-- | include/dm/device.h | 16 | ||||
| -rw-r--r-- | include/dm/root.h | 10 |
2 files changed, 26 insertions, 0 deletions
diff --git a/include/dm/device.h b/include/dm/device.h index babf8ac8f07..9948bd49fa5 100644 --- a/include/dm/device.h +++ b/include/dm/device.h @@ -497,6 +497,22 @@ void *dev_map_physmem(struct udevice *dev, unsigned long size); fdt_addr_t dev_get_addr_index(struct udevice *dev, int index); /** + * dev_get_addr_size_index() - Get the indexed reg property of a device + * + * Returns the address and size specified in the 'reg' property of a device. + * + * @dev: Pointer to a device + * @index: the 'reg' property can hold a list of <addr, size> pairs + * and @index is used to select which one is required + * @size: Pointer to size varible - this function returns the size + * specified in the 'reg' property here + * + * @return addr + */ +fdt_addr_t dev_get_addr_size_index(struct udevice *dev, int index, + fdt_size_t *size); + +/** * dev_get_addr_name() - Get the reg property of a device, indexed by name * * @dev: Pointer to a device diff --git a/include/dm/root.h b/include/dm/root.h index c7f0c1d5ca3..3cf730dcee1 100644 --- a/include/dm/root.h +++ b/include/dm/root.h @@ -21,6 +21,16 @@ struct udevice; */ struct udevice *dm_root(void); +struct global_data; +/** + * dm_fixup_for_gd_move() - Handle global_data moving to a new place + * + * The uclass list is part of global_data. Due to the way lists work, moving + * the list will cause it to become invalid. This function fixes that up so + * that the uclass list will work correctly. + */ +void dm_fixup_for_gd_move(struct global_data *new_gd); + /** * dm_scan_platdata() - Scan all platform data and bind drivers * |
