mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 13:56:20 +00:00

The different macros use writel which is defined in asm/io.h, so let's include the header so users of hardware.h do not need to include asm/io.h as well. While at it, remove asm/io.h includes wherever asm/arch-rockchip/hardware.h is included already. Cc: Quentin Schulz <foss+uboot@0leil.net> Reviewed-by: Kever Yang <kever.yang@rock-chips.com> Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
20 lines
537 B
C
20 lines
537 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2015 Google, Inc
|
|
*/
|
|
|
|
#ifndef _ASM_ARCH_HARDWARE_H
|
|
#define _ASM_ARCH_HARDWARE_H
|
|
|
|
#include <asm/io.h>
|
|
|
|
#define RK_CLRSETBITS(clr, set) ((((clr) | (set)) << 16) | (set))
|
|
#define RK_SETBITS(set) RK_CLRSETBITS(0, set)
|
|
#define RK_CLRBITS(clr) RK_CLRSETBITS(clr, 0)
|
|
|
|
#define rk_clrsetreg(addr, clr, set) \
|
|
writel(((clr) | (set)) << 16 | (set), addr)
|
|
#define rk_clrreg(addr, clr) writel((clr) << 16, addr)
|
|
#define rk_setreg(addr, set) writel((set) << 16 | (set), addr)
|
|
|
|
#endif
|