forked from Mirrors/opensbi

Minimum SiFive I2C driver to read/send bytes over I2C bus. This allows querying information and perform operation of onboard PMIC, as well as power-off and reset. 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>
13 lines
237 B
Makefile
13 lines
237 B
Makefile
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Copyright (c) 2021 YADRO
|
|
#
|
|
# Authors:
|
|
# Nikita Shubin <n.shubin@yadro.com>
|
|
#
|
|
|
|
libsbiutils-objs-y += i2c/i2c.o
|
|
libsbiutils-objs-y += i2c/fdt_i2c.o
|
|
libsbiutils-objs-y += i2c/fdt_i2c_sifive.o
|