aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/genoa/chip.h
blob: bca40af070834f582c0153d7ec13d2e419316b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __GENOA_CHIP_H__
#define __GENOA_CHIP_H__

#include <amdblocks/chip.h>
#include <amdblocks/i2c.h>
#include <drivers/i2c/designware/dw_i2c.h>
#include <soc/iomap.h>
#include <types.h>

struct soc_amd_genoa_config {
	struct soc_amd_common_config common_config;

	u8 i2c_scl_reset;
	struct dw_i2c_bus_config i2c[I2C_CTRLR_COUNT];
};

#endif