blob: 973eb498a7be4f80e2f8007c1951dbc57a9f2957 [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Naresh G Solanki335781a2016-10-26 19:43:14 +05302
3#ifndef SPD_BIN_H
4#define SPD_BIN_H
5
Naresh G Solanki335781a2016-10-26 19:43:14 +05306#include <stdint.h>
7#include <commonlib/region.h>
8
9#define SPD_PAGE_LEN 256
10#define SPD_PAGE_LEN_DDR4 512
11#define SPD_PAGE_0 (0x6C >> 1)
12#define SPD_PAGE_1 (0x6E >> 1)
13#define SPD_DRAM_TYPE 2
14#define SPD_DRAM_DDR3 0x0B
15#define SPD_DRAM_LPDDR3_INTEL 0xF1
16#define SPD_DRAM_LPDDR3_JEDEC 0x0F
17#define SPD_DRAM_DDR4 0x0C
Eric Laid0ee8702020-03-06 21:18:30 +080018#define SPD_DRAM_LPDDR4 0x10
Eric Laicb1e3862020-03-13 17:16:20 +080019#define SPD_DRAM_LPDDR4X 0x11
20#define SPD_DRAM_DDR5 0x12
21#define SPD_DRAM_LPDDR5 0x13
Naresh G Solanki335781a2016-10-26 19:43:14 +053022#define SPD_DENSITY_BANKS 4
23#define SPD_ADDRESSING 5
Jamie Chen7adcfde2020-04-16 01:20:29 +080024#define SPD_SN_LEN 4
Eric Laiaa8d7722019-09-02 15:01:56 +080025#define DDR3_ORGANIZATION 7
26#define DDR3_BUS_DEV_WIDTH 8
27#define DDR4_ORGANIZATION 12
28#define DDR4_BUS_DEV_WIDTH 13
Naresh G Solanki335781a2016-10-26 19:43:14 +053029#define DDR3_SPD_PART_OFF 128
30#define DDR3_SPD_PART_LEN 18
Jamie Chen7adcfde2020-04-16 01:20:29 +080031#define DDR3_SPD_SN_OFF 122
Naresh G Solanki335781a2016-10-26 19:43:14 +053032#define LPDDR3_SPD_PART_OFF 128
33#define LPDDR3_SPD_PART_LEN 18
34#define DDR4_SPD_PART_OFF 329
35#define DDR4_SPD_PART_LEN 20
Jamie Chen7adcfde2020-04-16 01:20:29 +080036#define DDR4_SPD_SN_OFF 325
Naresh G Solanki335781a2016-10-26 19:43:14 +053037
38struct spd_block {
Nico Huber5f9c6732017-06-28 16:42:51 +020039 u8 addr_map[CONFIG_DIMM_MAX]; /* 7 bit I2C addresses */
Naresh G Solanki335781a2016-10-26 19:43:14 +053040 u8 *spd_array[CONFIG_DIMM_MAX];
41 /* Length of each dimm */
42 u16 len;
43};
44
45void print_spd_info(uint8_t spd[]);
Julius Wernera9b44f42021-02-05 17:27:45 -080046uintptr_t spd_cbfs_map(u8 spd_index);
Naresh G Solanki335781a2016-10-26 19:43:14 +053047void dump_spd_info(struct spd_block *blk);
48void get_spd_smbus(struct spd_block *blk);
49
Jamie Chen7adcfde2020-04-16 01:20:29 +080050/*
51 * get_spd_sn returns the SODIMM serial number. It only supports DDR3 and DDR4.
52 * return CB_SUCCESS, sn is the serial number and sn=0xffffffff if the dimm is not present.
53 * return CB_ERR, if dram_type is not supported or addr is a zero.
54 */
55enum cb_err get_spd_sn(u8 addr, u32 *sn);
56
Patrick Georgi0e3c59e2017-01-28 15:59:25 +010057/* expects SPD size to be 128 bytes, reads from "spd.bin" in CBFS and
58 verifies the checksum. Only available if CONFIG_DIMM_SPD_SIZE == 128. */
59int read_ddr3_spd_from_cbfs(u8 *buf, int idx);
Naresh G Solanki335781a2016-10-26 19:43:14 +053060#endif