summaryrefslogtreecommitdiff
path: root/plat/nxp/common/fip_handler/ddr_fip/ddr_io_storage.c
blob: 13f362956dc2fae2256b345f0aed37b22bc3a84e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
 * Copyright 2018-2020 NXP
 *
 * SPDX-License-Identifier: BSD-3-Clause
 *
 */

#include <assert.h>
#include <string.h>

#include <io_block.h>
#include <io_driver.h>
#include <io_fip.h>
#include <io_memmap.h>
#include <io_storage.h>
#include <lib/utils.h>
#include <tools_share/firmware_image_package.h>
#include "ddr_io_storage.h"
#include "plat_common.h"
#include "platform_def.h"


/* TBD - Move these defined to the platform_def.h file.
 * Keeping them for reference here
 */
extern uintptr_t backend_dev_handle;

static uint32_t ddr_fip;

static uintptr_t ddr_fip_dev_handle;

static io_block_spec_t ddr_fip_block_spec = {
	.offset = PLAT_DDR_FIP_OFFSET,
	.length = PLAT_DDR_FIP_MAX_SIZE
};

static const io_uuid_spec_t ddr_imem_udimm_1d_uuid_spec = {
	.uuid = UUID_DDR_IMEM_UDIMM_1D,
};

static const io_uuid_spec_t ddr_imem_udimm_2d_uuid_spec = {
	.uuid = UUID_DDR_IMEM_UDIMM_2D,
};

static const io_uuid_spec_t ddr_dmem_udimm_1d_uuid_spec = {
	.uuid = UUID_DDR_DMEM_UDIMM_1D,
};

static const io_uuid_spec_t ddr_dmem_udimm_2d_uuid_spec = {
	.uuid = UUID_DDR_DMEM_UDIMM_2D,
};

static const io_uuid_spec_t ddr_imem_rdimm_1d_uuid_spec = {
	.uuid = UUID_DDR_IMEM_RDIMM_1D,
};

static const io_uuid_spec_t ddr_imem_rdimm_2d_uuid_spec = {
	.uuid = UUID_DDR_IMEM_RDIMM_2D,
};

static const io_uuid_spec_t ddr_dmem_rdimm_1d_uuid_spec = {
	.uuid = UUID_DDR_DMEM_RDIMM_1D,
};

static const io_uuid_spec_t ddr_dmem_rdimm_2d_uuid_spec = {
	.uuid = UUID_DDR_DMEM_RDIMM_2D,
};

#if TRUSTED_BOARD_BOOT
static const io_uuid_spec_t ddr_fw_key_cert_uuid_spec = {
	.uuid = UUID_DDR_FW_KEY_CERT,
};
static const io_uuid_spec_t ddr_udimm_fw_cert_uuid_spec = {
	.uuid = UUID_DDR_UDIMM_FW_CONTENT_CERT,
};
static const io_uuid_spec_t ddr_rdimm_fw_cert_uuid_spec = {
	.uuid = UUID_DDR_RDIMM_FW_CONTENT_CERT,
};
#endif

static int open_ddr_fip(const uintptr_t spec);

struct plat_io_policy {
	uintptr_t *dev_handle;
	uintptr_t image_spec;
	int (*check)(const uintptr_t spec);
};

/* By default, ARM platforms load images from the FIP */
static const struct plat_io_policy ddr_policies[] = {
	[DDR_FIP_IMAGE_ID - DDR_FIP_IMAGE_ID] = {
		&backend_dev_handle,
		(uintptr_t)&ddr_fip_block_spec,
		NULL
	},
	[DDR_IMEM_UDIMM_1D_IMAGE_ID - DDR_FIP_IMAGE_ID] = {
		&ddr_fip_dev_handle,
		(uintptr_t)&ddr_imem_udimm_1d_uuid_spec,
		open_ddr_fip
	},
	[DDR_IMEM_UDIMM_2D_IMAGE_ID - DDR_FIP_IMAGE_ID] = {
		&ddr_fip_dev_handle,
		(uintptr_t)&ddr_imem_udimm_2d_uuid_spec,
		open_ddr_fip
	},
	[DDR_DMEM_UDIMM_1D_IMAGE_ID - DDR_FIP_IMAGE_ID] = {
		&ddr_fip_dev_handle,
		(uintptr_t)&ddr_dmem_udimm_1d_uuid_spec,
		open_ddr_fip
	},
	[DDR_DMEM_UDIMM_2D_IMAGE_ID - DDR_FIP_IMAGE_ID] = {
		&ddr_fip_dev_handle,
		(uintptr_t)&ddr_dmem_udimm_2d_uuid_spec,
		open_ddr_fip
	},
	[DDR_IMEM_RDIMM_1D_IMAGE_ID - DDR_FIP_IMAGE_ID] = {
		&ddr_fip_dev_handle,
		(uintptr_t)&ddr_imem_rdimm_1d_uuid_spec,
		open_ddr_fip
	},
	[DDR_IMEM_RDIMM_2D_IMAGE_ID - DDR_FIP_IMAGE_ID] = {
		&ddr_fip_dev_handle,
		(uintptr_t)&ddr_imem_rdimm_2d_uuid_spec,
		open_ddr_fip
	},
	[DDR_DMEM_RDIMM_1D_IMAGE_ID - DDR_FIP_IMAGE_ID] = {
		&ddr_fip_dev_handle,
		(uintptr_t)&ddr_dmem_rdimm_1d_uuid_spec,
		open_ddr_fip
	},
	[DDR_DMEM_RDIMM_2D_IMAGE_ID - DDR_FIP_IMAGE_ID] = {
		&ddr_fip_dev_handle,
		(uintptr_t)&ddr_dmem_rdimm_2d_uuid_spec,
		open_ddr_fip
	},
#if TRUSTED_BOARD_BOOT
	[DDR_FW_KEY_CERT_ID - DDR_FIP_IMAGE_ID] = {
		&ddr_fip_dev_handle,
		(uintptr_t)&ddr_fw_key_cert_uuid_spec,
		open_ddr_fip
	},
	[DDR_UDIMM_FW_CONTENT_CERT_ID - DDR_FIP_IMAGE_ID] = {
		&ddr_fip_dev_handle,
		(uintptr_t)&ddr_udimm_fw_cert_uuid_spec,
		open_ddr_fip
	},
	[DDR_RDIMM_FW_CONTENT_CERT_ID - DDR_FIP_IMAGE_ID] = {
		&ddr_fip_dev_handle,
		(uintptr_t)&ddr_rdimm_fw_cert_uuid_spec,
		open_ddr_fip
	},
#endif
};

static int open_ddr_fip(const uintptr_t spec)
{
	int result;
	uintptr_t local_image_handle;

	/* See if a Firmware Image Package is available */
	result = io_dev_init(ddr_fip_dev_handle, (uintptr_t)DDR_FIP_IMAGE_ID);
	if (result == 0) {
		result = io_open(ddr_fip_dev_handle, spec, &local_image_handle);
		if (result == 0) {
			VERBOSE("Using FIP\n");
			io_close(local_image_handle);
		}
	}
	return result;
}

/* The image can be one of the DDR PHY images, which can be sleected via DDR
 * policies
 */
int plat_get_ddr_fip_image_source(unsigned int image_id, uintptr_t *dev_handle,
				  uintptr_t *image_spec,
				  int (*check)(const uintptr_t spec))
{
	int result = -1;
	const struct plat_io_policy *policy;

	if (image_id >= (DDR_FIP_IMAGE_ID + ARRAY_SIZE(ddr_policies)))
		return result;

	policy = &ddr_policies[image_id - DDR_FIP_IMAGE_ID];
	if (image_id == DDR_FIP_IMAGE_ID)
		result = check(policy->image_spec);
	else
		result = policy->check(policy->image_spec);
	if (result == 0) {
		*image_spec = policy->image_spec;
		*dev_handle = *(policy->dev_handle);
	}
	return result;
}

int ddr_fip_setup(const io_dev_connector_t *fip_dev_con, unsigned int boot_dev)
{
	int io_result;
	size_t ddr_fip_offset = PLAT_DDR_FIP_OFFSET;

	/* Open connections to ddr fip and cache the handles */
	io_result = io_dev_open(fip_dev_con, (uintptr_t)&ddr_fip,
				&ddr_fip_dev_handle);
	assert(io_result == 0);

	switch (boot_dev) {
#if QSPI_BOOT
	case BOOT_DEVICE_QSPI:
		ddr_fip_offset += NXP_QSPI_FLASH_ADDR;
		break;
#endif
#if NOR_BOOT
	case BOOT_DEVICE_IFC_NOR:
		ddr_fip_offset += NXP_NOR_FLASH_ADDR;
		break;
#endif
#if FLEXSPI_NOR_BOOT
	case BOOT_DEVICE_FLEXSPI_NOR:
		ddr_fip_offset += NXP_FLEXSPI_FLASH_ADDR;
		break;
#endif
	default:
		break;
	}

	ddr_fip_block_spec.offset = ddr_fip_offset;

	return io_result;
}