summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/broadwell/include/soc/iobp.h
blob: 1b3f4f6eca8387e776711277c4dcdadbf87417ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef _BROADWELL_IOBP_H_
#define _BROADWELL_IOBP_H_

u32 pch_iobp_read(u32 address);
void pch_iobp_write(u32 address, u32 data);
void pch_iobp_update(u32 address, u32 andvalue, u32 orvalue);
void pch_iobp_exec(u32 addr, u16 op_dcode, u8 route_id, u32 *data, u8 *resp);

#endif