diff options
author | Nikita Shubin <n.shubin@yadro.com> | 2021-11-10 12:42:28 +0300 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2021-11-12 10:19:45 +0530 |
commit | 6ca6bcafb74d2dc43a5082c1b7caf6b2aa453c2d (patch) | |
tree | dfd90e44f015e50d8b570a158feee91fbe1ee0c1 /include | |
parent | 2c964a2e159880c921a33f51f493a3a257d4bfce (diff) |
lib: utils/i2c: Add simple FDT based I2C framework
FDT based I2C framework on the top of I2C library.
The drivers are probed on demand by fdt_i2c_adapter_get
function.
Tested-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Alexandre Ghiti <alexandre.ghiti@canonical.com>
Tested-by: Alexandre Ghiti <alexandre.ghiti@canonical.com>
Signed-off-by: Nikita Shubin <n.shubin@yadro.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sbi_utils/i2c/fdt_i2c.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/sbi_utils/i2c/fdt_i2c.h b/include/sbi_utils/i2c/fdt_i2c.h new file mode 100644 index 0000000..c6e3339 --- /dev/null +++ b/include/sbi_utils/i2c/fdt_i2c.h @@ -0,0 +1,26 @@ +/* + * SPDX-License-Identifier: BSD-2-Clause + * + * Copyright (c) 2021 YADRO + * + * Authors: + * Nikita Shubin <n.shubin@yadro.com> + */ + +#ifndef __FDT_I2C_H__ +#define __FDT_I2C_H__ + +#include <sbi_utils/i2c/i2c.h> + +/** FDT based I2C adapter driver */ +struct fdt_i2c_adapter { + const struct fdt_match *match_table; + int (*init)(void *fdt, int nodeoff, + const struct fdt_match *match); +}; + +/** Get I2C adapter identified by nodeoff */ +int fdt_i2c_adapter_get(void *fdt, int nodeoff, + struct i2c_adapter **out_adapter); + +#endif |