1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
3 * Copyright(c) 2015, 2016 Intel Corporation.
6 #include <linux/delay.h>
12 * The EPROM is logically divided into three partitions:
13 * partition 0: the first 128K, visible from PCI ROM BAR
14 * partition 1: 4K config file (sector size)
15 * partition 2: the rest
17 #define P0_SIZE (128 * 1024)
18 #define P1_SIZE (4 * 1024)
19 #define P1_START P0_SIZE
20 #define P2_START (P0_SIZE + P1_SIZE)
22 /* controller page size, in bytes */
23 #define EP_PAGE_SIZE 256
24 #define EP_PAGE_MASK (EP_PAGE_SIZE - 1)
25 #define EP_PAGE_DWORDS (EP_PAGE_SIZE / sizeof(u32))
27 /* controller commands */
30 #define CMD_READ_DATA(addr) ((0x03 << CMD_SHIFT) | addr)
31 #define CMD_RELEASE_POWERDOWN_NOID ((0xab << CMD_SHIFT))
33 /* controller interface speeds */
34 #define EP_SPEED_FULL 0x2 /* full speed */
37 * How long to wait for the EPROM to become available, in ms.
38 * The spec 32 Mb EPROM takes around 40s to erase then write.
39 * Double it for safety.
41 #define EPROM_TIMEOUT 80000 /* ms */
44 * Read a 256 byte (64 dword) EPROM page.
45 * All callers have verified the offset is at a page boundary.
47 static void read_page(struct hfi1_devdata
*dd
, u32 offset
, u32
*result
)
51 write_csr(dd
, ASIC_EEP_ADDR_CMD
, CMD_READ_DATA(offset
));
52 for (i
= 0; i
< EP_PAGE_DWORDS
; i
++)
53 result
[i
] = (u32
)read_csr(dd
, ASIC_EEP_DATA
);
54 write_csr(dd
, ASIC_EEP_ADDR_CMD
, CMD_NOP
); /* close open page */
58 * Read length bytes starting at offset from the start of the EPROM.
60 static int read_length(struct hfi1_devdata
*dd
, u32 start
, u32 len
, void *dest
)
62 u32 buffer
[EP_PAGE_DWORDS
];
74 * Make sure the read range is not outside of the controller read
75 * command address range. Note that '>' is correct below - the end
76 * of the range is OK if it stops at the limit, but no higher.
78 if (end
> (1 << CMD_SHIFT
))
81 /* read the first partial page */
82 start_offset
= start
& EP_PAGE_MASK
;
84 /* partial starting page */
86 /* align and read the page that contains the start */
87 read_start
= start
& ~EP_PAGE_MASK
;
88 read_page(dd
, read_start
, buffer
);
90 /* the rest of the page is available data */
91 bytes
= EP_PAGE_SIZE
- start_offset
;
94 /* end is within this page */
95 memcpy(dest
, (u8
*)buffer
+ start_offset
, len
);
99 memcpy(dest
, (u8
*)buffer
+ start_offset
, bytes
);
105 /* start is now page aligned */
107 /* read whole pages */
108 while (len
>= EP_PAGE_SIZE
) {
109 read_page(dd
, start
, buffer
);
110 memcpy(dest
, buffer
, EP_PAGE_SIZE
);
112 start
+= EP_PAGE_SIZE
;
114 dest
+= EP_PAGE_SIZE
;
117 /* read the last partial page */
119 read_page(dd
, start
, buffer
);
120 memcpy(dest
, buffer
, len
);
127 * Initialize the EPROM handler.
129 int eprom_init(struct hfi1_devdata
*dd
)
133 /* only the discrete chip has an EPROM */
134 if (dd
->pcidev
->device
!= PCI_DEVICE_ID_INTEL0
)
138 * It is OK if both HFIs reset the EPROM as long as they don't
139 * do it at the same time.
141 ret
= acquire_chip_resource(dd
, CR_EPROM
, EPROM_TIMEOUT
);
144 "%s: unable to acquire EPROM resource, no EPROM support\n",
149 /* reset EPROM to be sure it is in a good state */
152 write_csr(dd
, ASIC_EEP_CTL_STAT
, ASIC_EEP_CTL_STAT_EP_RESET_SMASK
);
153 /* clear reset, set speed */
154 write_csr(dd
, ASIC_EEP_CTL_STAT
,
155 EP_SPEED_FULL
<< ASIC_EEP_CTL_STAT_RATE_SPI_SHIFT
);
157 /* wake the device with command "release powerdown NoID" */
158 write_csr(dd
, ASIC_EEP_ADDR_CMD
, CMD_RELEASE_POWERDOWN_NOID
);
160 dd
->eprom_available
= true;
161 release_chip_resource(dd
, CR_EPROM
);
166 /* magic character sequence that begins an image */
167 #define IMAGE_START_MAGIC "APO="
169 /* magic character sequence that might trail an image */
170 #define IMAGE_TRAIL_MAGIC "egamiAPO"
172 /* EPROM file types */
173 #define HFI1_EFT_PLATFORM_CONFIG 2
175 /* segment size - 128 KiB */
176 #define SEG_SIZE (128 * 1024)
178 struct hfi1_eprom_footer
{
179 u32 oprom_size
; /* size of the oprom, in bytes */
180 u16 num_table_entries
;
181 u16 version
; /* version of this footer */
182 u32 magic
; /* must be last */
185 struct hfi1_eprom_table_entry
{
186 u32 type
; /* file type */
187 u32 offset
; /* file offset from start of EPROM */
188 u32 size
; /* file size, in bytes */
192 * Calculate the max number of table entries that will fit within a directory
193 * buffer of size 'dir_size'.
195 #define MAX_TABLE_ENTRIES(dir_size) \
196 (((dir_size) - sizeof(struct hfi1_eprom_footer)) / \
197 sizeof(struct hfi1_eprom_table_entry))
199 #define DIRECTORY_SIZE(n) (sizeof(struct hfi1_eprom_footer) + \
200 (sizeof(struct hfi1_eprom_table_entry) * (n)))
202 #define MAGIC4(a, b, c, d) ((d) << 24 | (c) << 16 | (b) << 8 | (a))
203 #define FOOTER_MAGIC MAGIC4('e', 'p', 'r', 'm')
204 #define FOOTER_VERSION 1
207 * Read all of partition 1. The actual file is at the front. Adjust
208 * the returned size if a trailing image magic is found.
210 static int read_partition_platform_config(struct hfi1_devdata
*dd
, void **data
,
218 buffer
= kmalloc(P1_SIZE
, GFP_KERNEL
);
222 ret
= read_length(dd
, P1_START
, P1_SIZE
, buffer
);
228 /* config partition is valid only if it starts with IMAGE_START_MAGIC */
229 if (memcmp(buffer
, IMAGE_START_MAGIC
, strlen(IMAGE_START_MAGIC
))) {
234 /* scan for image magic that may trail the actual data */
235 p
= strnstr(buffer
, IMAGE_TRAIL_MAGIC
, P1_SIZE
);
247 * The segment magic has been checked. There is a footer and table of
250 * directory is a u32 aligned buffer of size EP_PAGE_SIZE.
252 static int read_segment_platform_config(struct hfi1_devdata
*dd
,
253 void *directory
, void **data
, u32
*size
)
255 struct hfi1_eprom_footer
*footer
;
256 struct hfi1_eprom_table_entry
*table
;
257 struct hfi1_eprom_table_entry
*entry
;
259 void *table_buffer
= NULL
;
262 u32 seg_base
, seg_offset
;
263 u32 bytes_available
, ncopied
, to_copy
;
265 /* the footer is at the end of the directory */
266 footer
= (struct hfi1_eprom_footer
*)
267 (directory
+ EP_PAGE_SIZE
- sizeof(*footer
));
269 /* make sure the structure version is supported */
270 if (footer
->version
!= FOOTER_VERSION
)
273 /* oprom size cannot be larger than a segment */
274 if (footer
->oprom_size
>= SEG_SIZE
)
277 /* the file table must fit in a segment with the oprom */
278 if (footer
->num_table_entries
>
279 MAX_TABLE_ENTRIES(SEG_SIZE
- footer
->oprom_size
))
282 /* find the file table start, which precedes the footer */
283 directory_size
= DIRECTORY_SIZE(footer
->num_table_entries
);
284 if (directory_size
<= EP_PAGE_SIZE
) {
285 /* the file table fits into the directory buffer handed in */
286 table
= (struct hfi1_eprom_table_entry
*)
287 (directory
+ EP_PAGE_SIZE
- directory_size
);
289 /* need to allocate and read more */
290 table_buffer
= kmalloc(directory_size
, GFP_KERNEL
);
293 ret
= read_length(dd
, SEG_SIZE
- directory_size
,
294 directory_size
, table_buffer
);
297 table
= table_buffer
;
300 /* look for the platform configuration file in the table */
301 for (entry
= NULL
, i
= 0; i
< footer
->num_table_entries
; i
++) {
302 if (table
[i
].type
== HFI1_EFT_PLATFORM_CONFIG
) {
313 * Sanity check on the configuration file size - it should never
314 * be larger than 4 KiB.
316 if (entry
->size
> (4 * 1024)) {
317 dd_dev_err(dd
, "Bad configuration file size 0x%x\n",
323 /* check for bogus offset and size that wrap when added together */
324 if (entry
->offset
+ entry
->size
< entry
->offset
) {
326 "Bad configuration file start + size 0x%x+0x%x\n",
327 entry
->offset
, entry
->size
);
332 /* allocate the buffer to return */
333 buffer
= kmalloc(entry
->size
, GFP_KERNEL
);
340 * Extract the file by looping over segments until it is fully read.
342 seg_offset
= entry
->offset
% SEG_SIZE
;
343 seg_base
= entry
->offset
- seg_offset
;
345 while (ncopied
< entry
->size
) {
346 /* calculate data bytes available in this segment */
348 /* start with the bytes from the current offset to the end */
349 bytes_available
= SEG_SIZE
- seg_offset
;
350 /* subtract off footer and table from segment 0 */
353 * Sanity check: should not have a starting point
354 * at or within the directory.
356 if (bytes_available
<= directory_size
) {
358 "Bad configuration file - offset 0x%x within footer+table\n",
363 bytes_available
-= directory_size
;
366 /* calculate bytes wanted */
367 to_copy
= entry
->size
- ncopied
;
369 /* max out at the available bytes in this segment */
370 if (to_copy
> bytes_available
)
371 to_copy
= bytes_available
;
374 * Read from the EPROM.
376 * The sanity check for entry->offset is done in read_length().
377 * The EPROM offset is validated against what the hardware
378 * addressing supports. In addition, if the offset is larger
379 * than the actual EPROM, it silently wraps. It will work
380 * fine, though the reader may not get what they expected
383 ret
= read_length(dd
, seg_base
+ seg_offset
, to_copy
,
390 /* set up for next segment */
391 seg_offset
= footer
->oprom_size
;
392 seg_base
+= SEG_SIZE
;
408 * Read the platform configuration file from the EPROM.
410 * On success, an allocated buffer containing the data and its size are
411 * returned. It is up to the caller to free this buffer.
415 * -ENXIO - no EPROM is available
416 * -EBUSY - not able to acquire access to the EPROM
417 * -ENOENT - no recognizable file written
418 * -ENOMEM - buffer could not be allocated
419 * -EINVAL - invalid EPROM contentents found
421 int eprom_read_platform_config(struct hfi1_devdata
*dd
, void **data
, u32
*size
)
423 u32 directory
[EP_PAGE_DWORDS
]; /* aligned buffer */
426 if (!dd
->eprom_available
)
429 ret
= acquire_chip_resource(dd
, CR_EPROM
, EPROM_TIMEOUT
);
433 /* read the last page of the segment for the EPROM format magic */
434 ret
= read_length(dd
, SEG_SIZE
- EP_PAGE_SIZE
, EP_PAGE_SIZE
, directory
);
438 /* last dword of the segment contains a magic value */
439 if (directory
[EP_PAGE_DWORDS
- 1] == FOOTER_MAGIC
) {
441 ret
= read_segment_platform_config(dd
, directory
, data
, size
);
443 /* partition format */
444 ret
= read_partition_platform_config(dd
, data
, size
);
448 release_chip_resource(dd
, CR_EPROM
);