summaryrefslogtreecommitdiff
path: root/zephyr/include/emul/emul_sn5s330.h
blob: cc5576819ede9e3133a65c77799c145d5a000077 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* Copyright 2021 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.
 */

#ifndef ZEPHYR_INCLUDE_EMUL_EMUL_SN5S330_H_
#define ZEPHYR_INCLUDE_EMUL_EMUL_SN5S330_H_

#include <zephyr/drivers/emul.h>
#include <zephyr/drivers/i2c_emul.h>

/**
 * @brief The i2c emulator pointer from the top level emul.
 *
 * @param emul The emulator to query
 * @return Pointer to the i2c emulator struct
 */
struct i2c_emul *sn5s330_emul_to_i2c_emul(const struct emul *emul);

/**
 * @brief Get the register value without incurring any side-effects
 *
 * @param emul The emulator to query
 * @param reg The register to read
 * @param val Pointer to write the register value to
 */
void sn5s330_emul_peek_reg(const struct emul *emul, uint32_t reg, uint8_t *val);

/**
 * @brief Reset the sn5s330 emulator
 *
 * @param emul The emulator to reset
 */
void sn5s330_emul_reset(const struct emul *emul);

/**
 * @brief Emulate vbus overcurrent clamping condition.
 *
 * @param emul The sn5s330 chip emulator.
 */
void sn5s330_emul_make_vbus_overcurrent(const struct emul *emul);

/**
 * @brief Emulate vbus voltage is below min 0.6V.
 *
 * @param emul The sn5s330 chip emulator.
 */
void sn5s330_emul_lower_vbus_below_minv(const struct emul *emul);

#endif /* ZEPHYR_INCLUDE_EMUL_EMUL_SN5S330_H_ */