summaryrefslogtreecommitdiff
path: root/src/northbridge/via/cx700/chip.h
blob: 6ebbc47618d87ba492901e48ad09193ad73b9a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __VIA_CX700_CHIP_H__
#define __VIA_CX700_CHIP_H__

#define DIMM_SOCKETS 2

struct dram_cfg {
	uint8_t spd_addr[DIMM_SOCKETS];
	enum {
		MCLKO0,
		MCLKO1,
		MCLKO2,
		ALL_MCLKO
	} mem_clocks;
};

struct northbridge_via_cx700_config {
	struct dram_cfg dram_cfg;
};

#endif