summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/common/block/include/intelblocks/ioc.h
blob: 885b20f345ceca0cd3c0de5740f98ad0dbd96f90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef SOC_INTEL_COMMON_BLOCK_IOC_H
#define SOC_INTEL_COMMON_BLOCK_IOC_H

#include <types.h>

void ioc_reg_write32(uint32_t offset, uint32_t value);
uint32_t ioc_reg_read32(uint32_t offset);
void ioc_reg_or32(uint32_t offset, uint32_t ordata);

#endif	/* SOC_INTEL_COMMON_BLOCK_IOC_H */