xref: /freebsd/sys/dev/sfxge/common/siena_flash.h (revision 929c7feb83b66d65bde31f02eca36b9bdd65eb9c)
1e948693eSPhilip Paeps /*-
2*929c7febSAndrew Rybchenko  * Copyright (c) 2007-2016 Solarflare Communications Inc.
33c838a9fSAndrew Rybchenko  * All rights reserved.
4e948693eSPhilip Paeps  *
5e948693eSPhilip Paeps  * Redistribution and use in source and binary forms, with or without
63c838a9fSAndrew Rybchenko  * modification, are permitted provided that the following conditions are met:
7e948693eSPhilip Paeps  *
83c838a9fSAndrew Rybchenko  * 1. Redistributions of source code must retain the above copyright notice,
93c838a9fSAndrew Rybchenko  *    this list of conditions and the following disclaimer.
103c838a9fSAndrew Rybchenko  * 2. Redistributions in binary form must reproduce the above copyright notice,
113c838a9fSAndrew Rybchenko  *    this list of conditions and the following disclaimer in the documentation
123c838a9fSAndrew Rybchenko  *    and/or other materials provided with the distribution.
133c838a9fSAndrew Rybchenko  *
143c838a9fSAndrew Rybchenko  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
153c838a9fSAndrew Rybchenko  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
163c838a9fSAndrew Rybchenko  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
173c838a9fSAndrew Rybchenko  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
183c838a9fSAndrew Rybchenko  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
193c838a9fSAndrew Rybchenko  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
203c838a9fSAndrew Rybchenko  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
213c838a9fSAndrew Rybchenko  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
223c838a9fSAndrew Rybchenko  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
233c838a9fSAndrew Rybchenko  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
243c838a9fSAndrew Rybchenko  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
253c838a9fSAndrew Rybchenko  *
263c838a9fSAndrew Rybchenko  * The views and conclusions contained in the software and documentation are
273c838a9fSAndrew Rybchenko  * those of the authors and should not be interpreted as representing official
283c838a9fSAndrew Rybchenko  * policies, either expressed or implied, of the FreeBSD Project.
295dee87d7SPhilip Paeps  *
305dee87d7SPhilip Paeps  * $FreeBSD$
31e948693eSPhilip Paeps  */
32e948693eSPhilip Paeps 
33e948693eSPhilip Paeps #ifndef	_SYS_SIENA_FLASH_H
34e948693eSPhilip Paeps #define	_SYS_SIENA_FLASH_H
35e948693eSPhilip Paeps 
36e948693eSPhilip Paeps #pragma pack(1)
37e948693eSPhilip Paeps 
38e948693eSPhilip Paeps /* Fixed locations near the start of flash (which may be in the internal PHY
39e948693eSPhilip Paeps  * firmware header) point to the boot header.
40e948693eSPhilip Paeps  *
41e948693eSPhilip Paeps  * - parsed by MC boot ROM and firmware
42e948693eSPhilip Paeps  * - reserved (but not parsed) by PHY firmware
43e948693eSPhilip Paeps  * - opaque to driver
44e948693eSPhilip Paeps  */
45e948693eSPhilip Paeps 
46e948693eSPhilip Paeps #define	SIENA_MC_BOOT_PHY_FW_HDR_LEN (0x20)
47e948693eSPhilip Paeps 
48e948693eSPhilip Paeps #define	SIENA_MC_BOOT_PTR_LOCATION (0x18)      /* First thing we try to boot */
49e948693eSPhilip Paeps #define	SIENA_MC_BOOT_ALT_PTR_LOCATION (0x1c)  /* Alternative if that fails */
50e948693eSPhilip Paeps 
51e948693eSPhilip Paeps #define	SIENA_MC_BOOT_HDR_LEN (0x200)
52e948693eSPhilip Paeps 
53e948693eSPhilip Paeps #define	SIENA_MC_BOOT_MAGIC (0x51E4A001)
54e948693eSPhilip Paeps #define	SIENA_MC_BOOT_VERSION (1)
55e948693eSPhilip Paeps 
563c838a9fSAndrew Rybchenko 
573c838a9fSAndrew Rybchenko /*Structures supporting an arbitrary number of binary blobs in the flash image
583c838a9fSAndrew Rybchenko   intended to house code and tables for the satellite cpus*/
593c838a9fSAndrew Rybchenko /*thanks to random.org for:*/
603c838a9fSAndrew Rybchenko #define	BLOBS_HEADER_MAGIC (0xBDA3BBD4)
613c838a9fSAndrew Rybchenko #define	BLOB_HEADER_MAGIC  (0xA1478A91)
623c838a9fSAndrew Rybchenko 
633c838a9fSAndrew Rybchenko typedef struct blobs_hdr_s {			/* GENERATED BY scripts/genfwdef */
643c838a9fSAndrew Rybchenko 	efx_dword_t	magic;
653c838a9fSAndrew Rybchenko 	efx_dword_t	no_of_blobs;
663c838a9fSAndrew Rybchenko } blobs_hdr_t;
673c838a9fSAndrew Rybchenko 
683c838a9fSAndrew Rybchenko typedef struct blob_hdr_s {			/* GENERATED BY scripts/genfwdef */
693c838a9fSAndrew Rybchenko 	efx_dword_t	magic;
703c838a9fSAndrew Rybchenko 	efx_dword_t	cpu_type;
713c838a9fSAndrew Rybchenko 	efx_dword_t	build_variant;
723c838a9fSAndrew Rybchenko 	efx_dword_t	offset;
733c838a9fSAndrew Rybchenko 	efx_dword_t	length;
743c838a9fSAndrew Rybchenko 	efx_dword_t	checksum;
753c838a9fSAndrew Rybchenko } blob_hdr_t;
763c838a9fSAndrew Rybchenko 
773c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_TXDI_TEXT (0)
783c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_RXDI_TEXT (1)
793c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_TXDP_TEXT (2)
803c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_RXDP_TEXT (3)
813c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_RXHRSL_HR_LUT (4)
823c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_RXHRSL_HR_LUT_CFG (5)
833c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_TXHRSL_HR_LUT (6)
843c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_TXHRSL_HR_LUT_CFG (7)
853c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_RXHRSL_HR_PGM  (8)
863c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_RXHRSL_SL_PGM  (9)
873c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_TXHRSL_HR_PGM  (10)
883c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_TXHRSL_SL_PGM  (11)
893c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_RXDI_VTBL0 (12)
903c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_TXDI_VTBL0 (13)
913c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_RXDI_VTBL1 (14)
923c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_TXDI_VTBL1 (15)
933c838a9fSAndrew Rybchenko #define	BLOB_CPU_TYPE_DUMPSPEC (32)
941fa702a2SAndrew Rybchenko #define	BLOB_CPU_TYPE_MC_XIP   (33)
951fa702a2SAndrew Rybchenko 
961fa702a2SAndrew Rybchenko #define	BLOB_CPU_TYPE_INVALID (31)
971fa702a2SAndrew Rybchenko 
981fa702a2SAndrew Rybchenko /*
991fa702a2SAndrew Rybchenko  * The upper four bits of the CPU type field specify the compression
1001fa702a2SAndrew Rybchenko  * algorithm used for this blob.
1011fa702a2SAndrew Rybchenko  */
1021fa702a2SAndrew Rybchenko #define	BLOB_COMPRESSION_MASK (0xf0000000)
1031fa702a2SAndrew Rybchenko #define	BLOB_CPU_TYPE_MASK    (0x0fffffff)
1041fa702a2SAndrew Rybchenko 
1051fa702a2SAndrew Rybchenko #define	BLOB_COMPRESSION_NONE (0x00000000) /* Stored as is */
1061fa702a2SAndrew Rybchenko #define	BLOB_COMPRESSION_LZ   (0x10000000) /* see lib/lzdecoder.c */
1073c838a9fSAndrew Rybchenko 
108e948693eSPhilip Paeps typedef struct siena_mc_boot_hdr_s {		/* GENERATED BY scripts/genfwdef */
109e948693eSPhilip Paeps 	efx_dword_t	magic;			/* = SIENA_MC_BOOT_MAGIC */
110e948693eSPhilip Paeps 	efx_word_t	hdr_version;		/* this structure definition is version 1 */
111e948693eSPhilip Paeps 	efx_byte_t	board_type;
112e948693eSPhilip Paeps 	efx_byte_t	firmware_version_a;
113e948693eSPhilip Paeps 	efx_byte_t	firmware_version_b;
114e948693eSPhilip Paeps 	efx_byte_t	firmware_version_c;
115e948693eSPhilip Paeps 	efx_word_t	checksum;		/* of whole header area + firmware image */
116e948693eSPhilip Paeps 	efx_word_t	firmware_version_d;
1173c838a9fSAndrew Rybchenko 	efx_byte_t	mcfw_subtype;
118e76a641bSAndrew Rybchenko 	efx_byte_t	generation;		/* Valid for medford, SBZ for earlier chips */
119e948693eSPhilip Paeps 	efx_dword_t	firmware_text_offset;	/* offset to firmware .text */
120e948693eSPhilip Paeps 	efx_dword_t	firmware_text_size;	/* length of firmware .text, in bytes */
121e948693eSPhilip Paeps 	efx_dword_t	firmware_data_offset;	/* offset to firmware .data */
122e948693eSPhilip Paeps 	efx_dword_t	firmware_data_size;	/* length of firmware .data, in bytes */
1233c838a9fSAndrew Rybchenko 	efx_byte_t	spi_rate;		/* SPI rate for reading image, 0 is BootROM default */
1243c838a9fSAndrew Rybchenko 	efx_byte_t	spi_phase_adj;		/* SPI SDO/SCL phase adjustment, 0 is default (no adj) */
125e76a641bSAndrew Rybchenko 	efx_word_t	xpm_sector;		/* The sector that contains the key, or 0xffff if unsigned (medford) SBZ (earlier) */
1263c838a9fSAndrew Rybchenko 	efx_dword_t	reserved_c[7];		/* (set to 0) */
127e948693eSPhilip Paeps } siena_mc_boot_hdr_t;
128e948693eSPhilip Paeps 
1293c838a9fSAndrew Rybchenko #define	SIENA_MC_BOOT_HDR_PADDING \
1303c838a9fSAndrew Rybchenko   (SIENA_MC_BOOT_HDR_LEN - sizeof(siena_mc_boot_hdr_t))
1313c838a9fSAndrew Rybchenko 
132e948693eSPhilip Paeps #define	SIENA_MC_STATIC_CONFIG_MAGIC (0xBDCF5555)
133e948693eSPhilip Paeps #define	SIENA_MC_STATIC_CONFIG_VERSION (0)
134e948693eSPhilip Paeps 
135e948693eSPhilip Paeps typedef struct siena_mc_static_config_hdr_s {	/* GENERATED BY scripts/genfwdef */
136e948693eSPhilip Paeps 	efx_dword_t	magic;			/* = SIENA_MC_STATIC_CONFIG_MAGIC */
137e948693eSPhilip Paeps 	efx_word_t	length;			/* of header area (i.e. not including VPD) */
138e948693eSPhilip Paeps 	efx_byte_t	version;
139e948693eSPhilip Paeps 	efx_byte_t	csum;			/* over header area (i.e. not including VPD) */
140e948693eSPhilip Paeps 	efx_dword_t	static_vpd_offset;
141e948693eSPhilip Paeps 	efx_dword_t	static_vpd_length;
142e948693eSPhilip Paeps 	efx_dword_t	capabilities;
143e948693eSPhilip Paeps 	efx_byte_t	mac_addr_base[6];
144e948693eSPhilip Paeps 	efx_byte_t	green_mode_cal;		/* Green mode calibration result */
145e948693eSPhilip Paeps 	efx_byte_t	green_mode_valid;	/* Whether cal holds a valid value */
146e948693eSPhilip Paeps 	efx_word_t	mac_addr_count;
147e948693eSPhilip Paeps 	efx_word_t	mac_addr_stride;
1483c838a9fSAndrew Rybchenko 	efx_word_t	calibrated_vref;	/* Vref as measured during production */
1493c838a9fSAndrew Rybchenko 	efx_word_t	adc_vref;		/* Vref as read by ADC */
150d880a0b3SAndrew Rybchenko 	efx_dword_t	reserved2[1];		/* (write as zero) */
151e948693eSPhilip Paeps 	efx_dword_t	num_dbi_items;
152e948693eSPhilip Paeps 	struct {
153e948693eSPhilip Paeps 		efx_word_t	addr;
154e948693eSPhilip Paeps 		efx_word_t	byte_enables;
155e948693eSPhilip Paeps 		efx_dword_t	value;
156e948693eSPhilip Paeps 	} dbi[];
157e948693eSPhilip Paeps } siena_mc_static_config_hdr_t;
158e948693eSPhilip Paeps 
159e948693eSPhilip Paeps #define	SIENA_MC_DYNAMIC_CONFIG_MAGIC (0xBDCFDDDD)
160e948693eSPhilip Paeps #define	SIENA_MC_DYNAMIC_CONFIG_VERSION (0)
161e948693eSPhilip Paeps 
162e948693eSPhilip Paeps typedef struct siena_mc_fw_version_s {		/* GENERATED BY scripts/genfwdef */
163e948693eSPhilip Paeps 	efx_dword_t	fw_subtype;
164e948693eSPhilip Paeps 	efx_word_t	version_w;
165e948693eSPhilip Paeps 	efx_word_t	version_x;
166e948693eSPhilip Paeps 	efx_word_t	version_y;
167e948693eSPhilip Paeps 	efx_word_t	version_z;
168e948693eSPhilip Paeps } siena_mc_fw_version_t;
169e948693eSPhilip Paeps 
170e948693eSPhilip Paeps typedef struct siena_mc_dynamic_config_hdr_s {	/* GENERATED BY scripts/genfwdef */
171e948693eSPhilip Paeps 	efx_dword_t	magic;			/* = SIENA_MC_DYNAMIC_CONFIG_MAGIC */
172e948693eSPhilip Paeps 	efx_word_t	length;			/* of header area (i.e. not including VPD) */
173e948693eSPhilip Paeps 	efx_byte_t	version;
174e948693eSPhilip Paeps 	efx_byte_t	csum;			/* over header area (i.e. not including VPD) */
175e948693eSPhilip Paeps 	efx_dword_t	dynamic_vpd_offset;
176e948693eSPhilip Paeps 	efx_dword_t	dynamic_vpd_length;
177e948693eSPhilip Paeps 	efx_dword_t	num_fw_version_items;
178e948693eSPhilip Paeps 	siena_mc_fw_version_t	fw_version[];
179e948693eSPhilip Paeps } siena_mc_dynamic_config_hdr_t;
180e948693eSPhilip Paeps 
181e948693eSPhilip Paeps #define	SIENA_MC_EXPROM_SINGLE_MAGIC (0xAA55)  /* little-endian uint16_t */
182e948693eSPhilip Paeps 
183e948693eSPhilip Paeps #define	SIENA_MC_EXPROM_COMBO_MAGIC (0xB0070102)  /* little-endian uint32_t */
1843c838a9fSAndrew Rybchenko #define	SIENA_MC_EXPROM_COMBO_V2_MAGIC (0xB0070103)  /* little-endian uint32_t */
185e948693eSPhilip Paeps 
186e948693eSPhilip Paeps typedef struct siena_mc_combo_rom_hdr_s {	/* GENERATED BY scripts/genfwdef */
1873c838a9fSAndrew Rybchenko 	efx_dword_t	magic;			/* = SIENA_MC_EXPROM_COMBO_MAGIC or SIENA_MC_EXPROM_COMBO_V2_MAGIC */
1883c838a9fSAndrew Rybchenko 	union		{
1893c838a9fSAndrew Rybchenko 		struct {
190e948693eSPhilip Paeps 			efx_dword_t	len1;	/* length of first image */
191e948693eSPhilip Paeps 			efx_dword_t	len2;	/* length of second image */
192e948693eSPhilip Paeps 			efx_dword_t	off1;	/* offset of first byte to edit to combine images */
193e948693eSPhilip Paeps 			efx_dword_t	off2;	/* offset of second byte to edit to combine images */
194e948693eSPhilip Paeps 			efx_word_t	infoblk0_off;/* infoblk offset */
195e948693eSPhilip Paeps 			efx_word_t	infoblk1_off;/* infoblk offset */
1963c838a9fSAndrew Rybchenko 			efx_byte_t	infoblk_len;/* length of space reserved for one infoblk structure */
197e948693eSPhilip Paeps 			efx_byte_t	reserved[7];/* (set to 0) */
1983c838a9fSAndrew Rybchenko 		} v1;
1993c838a9fSAndrew Rybchenko 		struct {
2003c838a9fSAndrew Rybchenko 			efx_dword_t	len1;	/* length of first image */
2013c838a9fSAndrew Rybchenko 			efx_dword_t	len2;	/* length of second image */
2023c838a9fSAndrew Rybchenko 			efx_dword_t	off1;	/* offset of first byte to edit to combine images */
2033c838a9fSAndrew Rybchenko 			efx_dword_t	off2;	/* offset of second byte to edit to combine images */
2043c838a9fSAndrew Rybchenko 			efx_word_t	infoblk_off;/* infoblk start offset */
2053c838a9fSAndrew Rybchenko 			efx_word_t	infoblk_count;/* infoblk count  */
2063c838a9fSAndrew Rybchenko 			efx_byte_t	infoblk_len;/* length of space reserved for one infoblk structure */
2073c838a9fSAndrew Rybchenko 			efx_byte_t	reserved[7];/* (set to 0) */
2083c838a9fSAndrew Rybchenko 		} v2;
2093519e25dSAndrew Rybchenko 	} data;
210e948693eSPhilip Paeps } siena_mc_combo_rom_hdr_t;
211e948693eSPhilip Paeps 
212e948693eSPhilip Paeps #pragma pack()
213e948693eSPhilip Paeps 
214e948693eSPhilip Paeps #endif	/* _SYS_SIENA_FLASH_H */
215