forked from Mirrors/opensbi

The i2c driver subsystem does not need any extra data, so it can use `struct fdt_driver` directly. It always initializes the driver for a specific DT node. Signed-off-by: Samuel Holland <samuel.holland@sifive.com> Reviewed-by: Anup Patel <anup@brainfault.org>
62 lines
1.2 KiB
C
62 lines
1.2 KiB
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2021 YADRO
|
|
*
|
|
* Authors:
|
|
* Nikita Shubin <n.shubin@yadro.com>
|
|
*
|
|
* derivate: lib/utils/gpio/fdt_gpio.c
|
|
* Authors:
|
|
* Anup Patel <anup.patel@wdc.com>
|
|
*/
|
|
|
|
#include <sbi/sbi_error.h>
|
|
#include <sbi_utils/i2c/fdt_i2c.h>
|
|
|
|
/* List of FDT i2c adapter drivers generated at compile time */
|
|
extern const struct fdt_driver *const fdt_i2c_adapter_drivers[];
|
|
|
|
static int fdt_i2c_adapter_find(const void *fdt, int nodeoff,
|
|
struct i2c_adapter **out_adapter)
|
|
{
|
|
int rc;
|
|
struct i2c_adapter *adapter = i2c_adapter_find(nodeoff);
|
|
|
|
if (!adapter) {
|
|
/* I2C adapter not found so initialize matching driver */
|
|
rc = fdt_driver_init_by_offset(fdt, nodeoff,
|
|
fdt_i2c_adapter_drivers);
|
|
if (rc)
|
|
return rc;
|
|
|
|
/* Try to find I2C adapter again */
|
|
adapter = i2c_adapter_find(nodeoff);
|
|
if (!adapter)
|
|
return SBI_ENOSYS;
|
|
}
|
|
|
|
if (out_adapter)
|
|
*out_adapter = adapter;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int fdt_i2c_adapter_get(const void *fdt, int nodeoff,
|
|
struct i2c_adapter **out_adapter)
|
|
{
|
|
int rc;
|
|
struct i2c_adapter *adapter;
|
|
|
|
if (!fdt || (nodeoff < 0) || !out_adapter)
|
|
return SBI_EINVAL;
|
|
|
|
rc = fdt_i2c_adapter_find(fdt, nodeoff, &adapter);
|
|
if (rc)
|
|
return rc;
|
|
|
|
*out_adapter = adapter;
|
|
|
|
return 0;
|
|
}
|