u-boot/arch/arm/mach-zynqmp/include/mach/psu_init_gpl.h
Tom Rini e8acfd2bb2 arm: Drop <common.h> from remaining header files
None of these header files need to include <common.h> so we can just
drop that entirely.

Signed-off-by: Tom Rini <trini@konsulko.com>
2023-11-07 14:50:52 -05:00

26 lines
622 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
#ifndef _PSU_INIT_GPL_H_ /* prevent circular inclusions */
#define _PSU_INIT_GPL_H_
#include <asm/io.h>
int mask_pollonvalue(unsigned long add, u32 mask, u32 value);
int mask_poll(u32 add, u32 mask);
u32 mask_read(u32 add, u32 mask);
void mask_delay(u32 delay);
void psu_mask_write(unsigned long offset, unsigned long mask,
unsigned long val);
void prog_reg(unsigned long addr, unsigned long mask,
unsigned long shift, unsigned long value);
int psu_init(void);
unsigned long psu_post_config_data(void);
int psu_uboot_init(void);
#endif /* _PSU_INIT_GPL_H_ */