xref: /aosp_15_r20/external/coreboot/src/soc/intel/common/block/include/intelblocks/ioc.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef SOC_INTEL_COMMON_BLOCK_IOC_H
4 #define SOC_INTEL_COMMON_BLOCK_IOC_H
5 
6 #include <types.h>
7 
8 void ioc_reg_write32(uint32_t offset, uint32_t value);
9 uint32_t ioc_reg_read32(uint32_t offset);
10 void ioc_reg_or32(uint32_t offset, uint32_t ordata);
11 
12 #endif	/* SOC_INTEL_COMMON_BLOCK_IOC_H */
13