mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
03fb03842a
Migrate the ST Microelectronics STUSB160X Type-C controller code in a generic I2C driver in st/common, based on Linux one in : drivers/usb/typec/stusb160x.c This patch simplifies the stm32mp1 board code and allows to reuse this STUSB160X driver in other boards. Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com> Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
46 lines
960 B
C
46 lines
960 B
C
// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
|
|
/*
|
|
* STMicroelectronics STUSB Type-C controller driver
|
|
* based on Linux drivers/usb/typec/stusb160x.c
|
|
*
|
|
* Copyright (C) 2020, STMicroelectronics - All Rights Reserved
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <i2c.h>
|
|
|
|
/* REGISTER */
|
|
#define STUSB160X_CC_CONNECTION_STATUS 0x0E
|
|
|
|
/* STUSB160X_CC_CONNECTION_STATUS bitfields */
|
|
#define STUSB160X_CC_ATTACH BIT(0)
|
|
|
|
int stusb160x_cable_connected(void)
|
|
{
|
|
struct udevice *dev;
|
|
int ret;
|
|
|
|
ret = uclass_get_device_by_driver(UCLASS_I2C_GENERIC,
|
|
DM_GET_DRIVER(stusb160x),
|
|
&dev);
|
|
if (ret < 0)
|
|
return ret;
|
|
|
|
ret = dm_i2c_reg_read(dev, STUSB160X_CC_CONNECTION_STATUS);
|
|
if (ret < 0)
|
|
return 0;
|
|
|
|
return ret & STUSB160X_CC_ATTACH;
|
|
}
|
|
|
|
static const struct udevice_id stusb160x_ids[] = {
|
|
{ .compatible = "st,stusb1600" },
|
|
{}
|
|
};
|
|
|
|
U_BOOT_DRIVER(stusb160x) = {
|
|
.name = "stusb160x",
|
|
.id = UCLASS_I2C_GENERIC,
|
|
.of_match = stusb160x_ids,
|
|
};
|