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