mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
36 lines
498 B
C
36 lines
498 B
C
|
/*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef XIL_IO_H /* prevent circular inclusions */
|
||
|
#define XIL_IO_H
|
||
|
|
||
|
/* FIXME remove this when vivado is fixed */
|
||
|
#include <asm/io.h>
|
||
|
|
||
|
#define xil_printf(...)
|
||
|
|
||
|
void Xil_ICacheEnable(void)
|
||
|
{}
|
||
|
|
||
|
void Xil_DCacheEnable(void)
|
||
|
{}
|
||
|
|
||
|
void Xil_ICacheDisable(void)
|
||
|
{}
|
||
|
|
||
|
void Xil_DCacheDisable(void)
|
||
|
{}
|
||
|
|
||
|
void Xil_Out32(unsigned long addr, unsigned long val)
|
||
|
{
|
||
|
writel(val, addr);
|
||
|
}
|
||
|
|
||
|
int Xil_In32(unsigned long addr)
|
||
|
{
|
||
|
return readl(addr);
|
||
|
}
|
||
|
|
||
|
#endif /* XIL_IO_H */
|