mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
1d624a4f08
Move the register helpers used to access the registers via p2wi resp. rsb bus on the otherwise identical axp221 and axp223 pmics to a separate file, so that they can be used by the upcoming standalone axp gpio driver too. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Reviewed-by: Simon Glass <sjg@chromium.org> Acked-by: Ian Campbell <ijc@hellion.org.uk>
18 lines
387 B
C
18 lines
387 B
C
/*
|
|
* (C) Copyright 2015 Hans de Goede <hdegoede@redhat.com>
|
|
*
|
|
* Sunxi PMIC bus access helpers header
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _SUNXI_PMIC_BUS_H
|
|
#define _SUNXI_PMIS_BUS_H
|
|
|
|
int pmic_bus_init(void);
|
|
int pmic_bus_read(u8 reg, u8 *data);
|
|
int pmic_bus_write(u8 reg, u8 data);
|
|
int pmic_bus_setbits(u8 reg, u8 bits);
|
|
int pmic_bus_clrbits(u8 reg, u8 bits);
|
|
|
|
#endif
|