upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
574 B
25 lines
574 B
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
#ifndef _PSU_INIT_GPL_H_ /* prevent circular inclusions */
|
|
#define _PSU_INIT_GPL_H_
|
|
|
|
#include <asm/io.h>
|
|
#include <common.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);
|
|
|
|
#endif /* _PSU_INIT_GPL_H_ */
|
|
|