coreboot-libre-fam15h-rdimm/3rdparty/chromeec/driver/bc12/max14637.h

32 lines
951 B
C
Raw Permalink Normal View History

2024-03-04 11:14:53 +01:00
/* Copyright 2018 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* MAX14637 USB BC 1.2 Charger Detector driver definitions */
#include "gpio.h"
#define MAX14637_FLAGS_ENABLE_ACTIVE_LOW BIT(0)
#define MAX14637_FLAGS_CHG_DET_ACTIVE_LOW BIT(1)
struct max14637_config_t {
/*
* Enable signal to BC 1.2. Can be active high or low depending on
* MAX14637_FLAGS_ENABLE_ACTIVE_LOW flag bit.
*/
enum gpio_signal chip_enable_pin;
/*
* Charger detect signal from BC 1.2 chip. Can be active high or low
* depending on MAX14637_FLAGS_CHG_DET_ACTIVE_LOW flag bit.
*/
enum gpio_signal chg_det_pin;
/* Configuration flags with prefix MAX14637_FLAGS. */
int flags;
};
/*
* Array that contains boards-specific configuration for BC 1.2 charging chips.
*/
extern const struct max14637_config_t max14637_config[CONFIG_USB_PD_PORT_COUNT];