diff options
author | Furquan Shaikh <furquan@google.com> | 2016-06-19 23:16:45 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2016-06-21 20:23:40 +0200 |
commit | 2b57691ce0dcb06d6d8677393f76006c363d5856 (patch) | |
tree | 95c01e16e04fabdf09c624c8852fd525112888cd /src/commonlib/include | |
parent | f4dac8ac06512c8ed00a58cacae453c128a159de (diff) |
commonlib/region: Add helpers for dynamic initialization of region dev
This allows initialization of runtime region devices and xlate region
devices where all parameters cannot be statically determined.
BUG=chrome-os-partner:54563
Change-Id: Ia6e1b695fed3bbfa08598d1593e650fc1465d41f
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/15267
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/commonlib/include')
-rw-r--r-- | src/commonlib/include/commonlib/region.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/commonlib/include/commonlib/region.h b/src/commonlib/include/commonlib/region.h index 4e32b09be0..634132a695 100644 --- a/src/commonlib/include/commonlib/region.h +++ b/src/commonlib/include/commonlib/region.h @@ -90,6 +90,11 @@ struct region_device { }, \ } +/* Helper to dynamically initialize region device. */ +void region_device_init(struct region_device *rdev, + const struct region_device_ops *ops, size_t offset, + size_t size); + static inline size_t region_offset(const struct region *r) { return r->offset; @@ -187,4 +192,10 @@ extern const struct region_device_ops xlate_rdev_ops; .rdev = REGION_DEV_INIT(&xlate_rdev_ops, 0, (parent_sz_)),\ } +/* Helper to dynamically initialize xlate region device. */ +void xlate_region_device_init(struct xlate_region_device *xdev, + const struct region_device *access_dev, + size_t sub_offset, size_t sub_size, + size_t parent_size); + #endif /* _REGION_H_ */ |