uboot/include/axp305.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0+ */
   2/*
   3 * (C) Copyright 2020 Jernej Skrabec <jernej.skrabec@siol.net>
   4 */
   5
   6enum axp305_reg {
   7        AXP305_CHIP_VERSION = 0x3,
   8        AXP305_OUTPUT_CTRL1 = 0x10,
   9        AXP305_DCDCD_VOLTAGE = 0x15,
  10        AXP305_SHUTDOWN = 0x32,
  11};
  12
  13#define AXP305_CHIP_VERSION_MASK        0xcf
  14
  15#define AXP305_OUTPUT_CTRL1_DCDCD_EN    (1 << 3)
  16
  17#define AXP305_POWEROFF                 (1 << 7)
  18