Searched refs:SF_PAGE_SIZE (Results 1 – 3 of 3) sorted by relevance
/drivers/net/ethernet/chelsio/cxgb4/ |
D | t4_hw.h | 71 SF_PAGE_SIZE = 256, /* serial flash page size */ enumerator
|
D | t4_hw.c | 2948 if (addr >= adapter->params.sf_size || offset + n > SF_PAGE_SIZE) in t4_write_flash() 3518 u8 first_page[SF_PAGE_SIZE]; in t4_load_fw() 3566 memcpy(first_page, fw_data, SF_PAGE_SIZE); in t4_load_fw() 3568 ret = t4_write_flash(adap, fw_img_start, SF_PAGE_SIZE, first_page); in t4_load_fw() 3573 for (size -= SF_PAGE_SIZE; size; size -= SF_PAGE_SIZE) { in t4_load_fw() 3574 addr += SF_PAGE_SIZE; in t4_load_fw() 3575 fw_data += SF_PAGE_SIZE; in t4_load_fw() 3576 ret = t4_write_flash(adap, addr, SF_PAGE_SIZE, fw_data); in t4_load_fw() 9274 for (i = 0; i < size; i += SF_PAGE_SIZE) { in t4_load_cfg() 9275 if ((size - i) < SF_PAGE_SIZE) in t4_load_cfg() [all …]
|
/drivers/scsi/csiostor/ |
D | csio_hw.c | 534 if (addr >= hw->params.sf_size || offset + n > SF_PAGE_SIZE) in csio_hw_write_flash() 674 uint8_t first_page[SF_PAGE_SIZE]; in csio_hw_fw_dload() 731 memcpy(first_page, fw_data, SF_PAGE_SIZE); in csio_hw_fw_dload() 733 ret = csio_hw_write_flash(hw, FLASH_FW_START, SF_PAGE_SIZE, first_page); in csio_hw_fw_dload() 741 for (size -= SF_PAGE_SIZE; size; size -= SF_PAGE_SIZE) { in csio_hw_fw_dload() 742 addr += SF_PAGE_SIZE; in csio_hw_fw_dload() 743 fw_data += SF_PAGE_SIZE; in csio_hw_fw_dload() 744 ret = csio_hw_write_flash(hw, addr, SF_PAGE_SIZE, fw_data); in csio_hw_fw_dload()
|