diff options
| author | Michal Simek <[email protected]> | 2019-01-31 16:30:57 +0100 |
|---|---|---|
| committer | Heiko Schocher <[email protected]> | 2019-02-08 06:24:57 +0100 |
| commit | 5ebc7c7e27780ce9a16289eeb87290eebd248ea9 (patch) | |
| tree | 2ac627256a47dcee9cb4ee592fb5d98269ebd51a /include/dm | |
| parent | 97276a91db8e98f081a40ddf9dc8f81d4032a756 (diff) | |
dm: core: Add of_alias_get_highest_id()
The same functionality was added to Linux for i2c bus registration with this
commit message:
"
of: base: add function to get highest id of an alias stem
I2C supports adding adapters using either a dynamic or fixed id. The
latter is provided by aliases in the DT case. To prevent id collisions
of those two types, install this function which gives us the highest
fixed id, so we can then let the dynamically created ones come after
this highest number.
Signed-off-by: Wolfram Sang <[email protected]>
Acked-by: Rob Herring <[email protected]>
Signed-off-by: Wolfram Sang <[email protected]>
"
Add it also to U-Boot for DM I2C support.
Signed-off-by: Michal Simek <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/dm')
| -rw-r--r-- | include/dm/of_access.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/dm/of_access.h b/include/dm/of_access.h index 5ed1a0cdb42..13fedb7cf5e 100644 --- a/include/dm/of_access.h +++ b/include/dm/of_access.h @@ -425,6 +425,16 @@ int of_alias_scan(void); int of_alias_get_id(const struct device_node *np, const char *stem); /** + * of_alias_get_highest_id - Get highest alias id for the given stem + * @stem: Alias stem to be examined + * + * The function travels the lookup table to get the highest alias id for the + * given alias stem. + * @return alias ID, if found, else -1 + */ +int of_alias_get_highest_id(const char *stem); + +/** * of_get_stdout() - Get node to use for stdout * * @return node referred to by stdout-path alias, or NULL if none |
