22 lines
701 B
C
22 lines
701 B
C
|
/*
|
||
|
* drivers/power/axp_power/axp259/axp259-gpio.h
|
||
|
* (C) Copyright 2010-2016
|
||
|
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
|
||
|
* Pannan <pannan@allwinnertech.com>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU General Public License as
|
||
|
* published by the Free Software Foundation; either version 2 of
|
||
|
* the License, or (at your option) any later version.
|
||
|
*/
|
||
|
|
||
|
#ifndef AXP259_GPIO_H
|
||
|
#define AXP259_GPIO_H
|
||
|
#include "axp259.h"
|
||
|
|
||
|
#define AXP_GPIO1_CFG (AXP259_GPIO1_CTL) /* 0x18 */
|
||
|
#define AXP_GPIO2_CFG (AXP259_GPIO2_CTL) /* 0x19 */
|
||
|
#define AXP_GPIO_STATE (AXP259_GPIO1_SIGNAL) /* 0x1A */
|
||
|
|
||
|
#endif
|