1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2012-2013, Xilinx, Michal Simek
22 /* Local Static Functions */
23 static int xilinx_validate(xilinx_desc *desc, char *fn);
25 /* ------------------------------------------------------------------------- */
27 int fpga_is_partial_data(int devnum, size_t img_len)
29 const fpga_desc * const desc = fpga_get_desc(devnum);
30 xilinx_desc *desc_xilinx = desc->devdesc;
32 /* Check datasize against FPGA size */
33 if (img_len >= desc_xilinx->size)
36 /* datasize is smaller, must be partial data */
40 int fpga_loadbitstream(int devnum, char *fpgadata, size_t size,
41 bitstream_type bstype)
44 unsigned int swapsize;
45 unsigned char *dataptr;
47 const fpga_desc *desc;
50 dataptr = (unsigned char *)fpgadata;
51 /* Find out fpga_description */
52 desc = fpga_validate(devnum, dataptr, 0, (char *)__func__);
53 /* Assign xilinx device description */
54 xdesc = desc->devdesc;
56 /* skip the first bytes of the bitsteam, their meaning is unknown */
57 length = (*dataptr << 8) + *(dataptr + 1);
61 /* get design name (identifier, length, string) */
62 length = (*dataptr << 8) + *(dataptr + 1);
64 if (*dataptr++ != 0x61) {
65 debug("%s: Design name id not recognized in bitstream\n",
70 length = (*dataptr << 8) + *(dataptr + 1);
72 printf(" design filename = \"%s\"\n", dataptr);
75 /* get part number (identifier, length, string) */
76 if (*dataptr++ != 0x62) {
77 printf("%s: Part number id not recognized in bitstream\n",
82 length = (*dataptr << 8) + *(dataptr + 1);
86 i = (ulong)strstr((char *)dataptr, xdesc->name);
88 printf("%s: Wrong bitstream ID for this device\n",
90 printf("%s: Bitstream ID %s, current device ID %d/%s\n",
91 __func__, dataptr, devnum, xdesc->name);
95 printf("%s: Please fill correct device ID to xilinx_desc\n",
98 printf(" part number = \"%s\"\n", dataptr);
101 /* get date (identifier, length, string) */
102 if (*dataptr++ != 0x63) {
103 printf("%s: Date identifier not recognized in bitstream\n",
108 length = (*dataptr << 8) + *(dataptr+1);
110 printf(" date = \"%s\"\n", dataptr);
113 /* get time (identifier, length, string) */
114 if (*dataptr++ != 0x64) {
115 printf("%s: Time identifier not recognized in bitstream\n",
120 length = (*dataptr << 8) + *(dataptr+1);
122 printf(" time = \"%s\"\n", dataptr);
125 /* get fpga data length (identifier, length) */
126 if (*dataptr++ != 0x65) {
127 printf("%s: Data length id not recognized in bitstream\n",
131 swapsize = ((unsigned int) *dataptr << 24) +
132 ((unsigned int) *(dataptr + 1) << 16) +
133 ((unsigned int) *(dataptr + 2) << 8) +
134 ((unsigned int) *(dataptr + 3));
136 printf(" bytes in bitstream = %d\n", swapsize);
138 return fpga_load(devnum, dataptr, swapsize, bstype, 0);
141 int xilinx_load(xilinx_desc *desc, const void *buf, size_t bsize,
142 bitstream_type bstype, int flags)
144 if (!xilinx_validate (desc, (char *)__FUNCTION__)) {
145 printf ("%s: Invalid device descriptor\n", __FUNCTION__);
149 if (!desc->operations || !desc->operations->load) {
150 printf("%s: Missing load operation\n", __func__);
154 return desc->operations->load(desc, buf, bsize, bstype, flags);
157 #if defined(CONFIG_CMD_FPGA_LOADFS)
158 int xilinx_loadfs(xilinx_desc *desc, const void *buf, size_t bsize,
159 fpga_fs_info *fpga_fsinfo)
161 if (!xilinx_validate(desc, (char *)__func__)) {
162 printf("%s: Invalid device descriptor\n", __func__);
166 if (!desc->operations || !desc->operations->loadfs) {
167 printf("%s: Missing loadfs operation\n", __func__);
171 return desc->operations->loadfs(desc, buf, bsize, fpga_fsinfo);
175 #if CONFIG_IS_ENABLED(FPGA_LOAD_SECURE)
176 int xilinx_loads(xilinx_desc *desc, const void *buf, size_t bsize,
177 struct fpga_secure_info *fpga_sec_info)
179 if (!xilinx_validate(desc, (char *)__func__)) {
180 printf("%s: Invalid device descriptor\n", __func__);
184 if (!desc->operations || !desc->operations->loads) {
185 printf("%s: Missing loads operation\n", __func__);
189 return desc->operations->loads(desc, buf, bsize, fpga_sec_info);
193 int xilinx_dump(xilinx_desc *desc, const void *buf, size_t bsize)
195 if (!xilinx_validate (desc, (char *)__FUNCTION__)) {
196 printf ("%s: Invalid device descriptor\n", __FUNCTION__);
200 if (!desc->operations || !desc->operations->dump) {
201 printf("%s: Missing dump operation\n", __func__);
205 return desc->operations->dump(desc, buf, bsize);
208 int xilinx_info(xilinx_desc *desc)
210 int ret_val = FPGA_FAIL;
212 if (xilinx_validate (desc, (char *)__FUNCTION__)) {
213 printf ("Family: \t");
214 switch (desc->family) {
215 case xilinx_spartan2:
216 printf ("Spartan-II\n");
218 case xilinx_spartan3:
219 printf ("Spartan-III\n");
222 printf ("Virtex-II\n");
228 printf("ZynqMP PL\n");
231 printf("Versal PL\n");
233 /* Add new family types here */
235 printf ("Unknown family type, %d\n", desc->family);
238 printf ("Interface type:\t");
239 switch (desc->iface) {
241 printf ("Slave Serial\n");
243 case master_serial: /* Not used */
244 printf ("Master Serial\n");
247 printf ("Slave Parallel\n");
249 case jtag_mode: /* Not used */
250 printf ("JTAG Mode\n");
252 case slave_selectmap:
253 printf ("Slave SelectMap Mode\n");
255 case master_selectmap:
256 printf ("Master SelectMap Mode\n");
259 printf("Device configuration interface (Zynq)\n");
262 printf("csu_dma configuration interface (ZynqMP)\n");
265 printf("CFI configuration interface (Versal)\n");
267 /* Add new interface types here */
269 printf ("Unsupported interface type, %d\n", desc->iface);
272 printf("Device Size: \t%zd bytes\n"
273 "Cookie: \t0x%x (%d)\n",
274 desc->size, desc->cookie, desc->cookie);
276 printf("Device name: \t%s\n", desc->name);
279 printf ("Device Function Table @ 0x%p\n", desc->iface_fns);
281 printf ("No Device Function Table.\n");
283 if (desc->operations && desc->operations->info)
284 desc->operations->info(desc);
286 ret_val = FPGA_SUCCESS;
288 printf ("%s: Invalid device descriptor\n", __FUNCTION__);
294 /* ------------------------------------------------------------------------- */
296 static int xilinx_validate(xilinx_desc *desc, char *fn)
301 if ((desc->family > min_xilinx_type) &&
302 (desc->family < max_xilinx_type)) {
303 if ((desc->iface > min_xilinx_iface_type) &&
304 (desc->iface < max_xilinx_iface_type)) {
308 printf ("%s: NULL part size\n", fn);
310 printf ("%s: Invalid Interface type, %d\n",
313 printf ("%s: Invalid family type, %d\n", fn, desc->family);
315 printf ("%s: NULL descriptor!\n", fn);