blob: 744b1f78bd600edff3972f1a63317181ca0d865b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* 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_MAX_COUNT];
extern const struct bc12_drv max14637_drv;
|