Lines Matching defs:burst
1274 ulong dburst = OPTROM_BURST_DWORDS; /* burst size in dwords */
1284 /* Allocate dma buffer for burst write */
1289 "Failed allocate burst (%x bytes)\n", OPTROM_BURST_SIZE);
1321 /* If smaller than a burst remaining */
1330 "Write burst (%#lx dwords)...\n", dburst);
1341 "Failed burst-write at %x (%p/%#llx)....\n",
2684 ulong dburst = OPTROM_BURST_DWORDS; /* burst size in dwords */
2708 /* Allocate dma buffer for burst write */
2713 "Failed allocate burst (%x bytes)\n", OPTROM_BURST_SIZE);
2916 /* If smaller than a burst remaining */
2925 "Write burst (%#lx dwords)...\n", dburst);
2930 "Failed burst write at %x (%p/%#llx)...\n",
3006 uint32_t faddr, left, burst;
3024 "Unable to allocate memory for optrom burst read (%x KB).\n",
3032 burst = OPTROM_BURST_DWORDS;
3034 if (burst > left)
3035 burst = left;
3038 flash_data_addr(ha, faddr), burst);
3041 "Unable to burst-read optrom segment (%x/%x/%llx).\n",
3052 memcpy(pbuf, optrom, burst * 4);
3054 left -= burst;
3055 faddr += burst;
3056 pbuf += burst * 4;