esp-idf/components/soc/esp32h2/include/soc/regi2c_brownout.h
2023-02-20 17:15:02 +08:00

50 lines
1.5 KiB
C

/*
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include "regi2c_pmu.h"
/**
* @file regi2c_brownout.h
* @brief Register definitions for brownout detector
*
* This file lists register fields of the brownout detector, located on an internal configuration
* bus. These definitions are used via macros defined in regi2c_ctrl.h.
*/
#define I2C_BOD I2C_PMU
#define I2C_BOD_HOSTID I2C_PMU_HOSTID
#define I2C_PMU_OR_DREFL_VBAT 17
#define I2C_PMU_OR_DREFL_VBAT_MSB 4
#define I2C_PMU_OR_DREFL_VBAT_LSB 2
#define I2C_PMU_OR_DREFH_VBAT 17
#define I2C_PMU_OR_DREFH_VBAT_MSB 7
#define I2C_PMU_OR_DREFH_VBAT_LSB 5
#define I2C_PMU_OR_XPD_DIGDET 18
#define I2C_PMU_OR_XPD_DIGDET_MSB 0
#define I2C_PMU_OR_XPD_DIGDET_MSB 0
#define I2C_PMU_OR_DREFL_DIGDET 18
#define I2C_PMU_OR_DREFL_DIGDET_MSB 4
#define I2C_PMU_OR_DREFL_DIGDET_LSB 2
#define I2C_PMU_OR_DREFH_DIGDET 18
#define I2C_PMU_OR_DREFH_DIGDET_MSB 7
#define I2C_PMU_OR_DREFH_DIGDET_LSB 5
#define I2C_PMU_OR_DREFL_VDDA 19
#define I2C_PMU_OR_DREFL_VDDA_MSB 4
#define I2C_PMU_OR_DREFL_VDDA_LSB 2
#define I2C_PMU_OR_DREFH_VDDA 19
#define I2C_PMU_OR_DREFH_VDDA_MSB 7
#define I2C_PMU_OR_DREFH_VDDA_LSB 5
#define I2C_BOD_THRESHOLD I2C_PMU_OR_DREFL_VDDA
#define I2C_BOD_THRESHOLD_MSB I2C_PMU_OR_DREFL_VDDA_MSB
#define I2C_BOD_THRESHOLD_LSB I2C_PMU_OR_DREFL_VDDA_LSB