Lines Matching refs:sge_flags

1694 	u32 sge_flags = 0;  in efct_hw_io_init_sges()  local
1722 sge_flags = le32_to_cpu(data->dw2_flags); in efct_hw_io_init_sges()
1723 sge_flags &= (~SLI4_SGE_TYPE_MASK); in efct_hw_io_init_sges()
1724 sge_flags |= (SLI4_SGE_TYPE_DATA << SLI4_SGE_TYPE_SHIFT); in efct_hw_io_init_sges()
1730 data->dw2_flags = cpu_to_le32(sge_flags); in efct_hw_io_init_sges()
1757 sge_flags = le32_to_cpu(data->dw2_flags); in efct_hw_io_init_sges()
1758 sge_flags &= (~SLI4_SGE_TYPE_MASK); in efct_hw_io_init_sges()
1759 sge_flags |= (SLI4_SGE_TYPE_SKIP << SLI4_SGE_TYPE_SHIFT); in efct_hw_io_init_sges()
1760 data->dw2_flags = cpu_to_le32(sge_flags); in efct_hw_io_init_sges()
1769 sge_flags = le32_to_cpu(data->dw2_flags); in efct_hw_io_init_sges()
1770 sge_flags |= SLI4_SGE_LAST; in efct_hw_io_init_sges()
1771 data->dw2_flags = cpu_to_le32(sge_flags); in efct_hw_io_init_sges()
1781 u32 sge_flags = 0; in efct_hw_io_add_sge() local
1800 sge_flags = le32_to_cpu(data->dw2_flags); in efct_hw_io_add_sge()
1801 sge_flags &= ~SLI4_SGE_TYPE_MASK; in efct_hw_io_add_sge()
1802 sge_flags |= SLI4_SGE_TYPE_DATA << SLI4_SGE_TYPE_SHIFT; in efct_hw_io_add_sge()
1803 sge_flags &= ~SLI4_SGE_DATA_OFFSET_MASK; in efct_hw_io_add_sge()
1804 sge_flags |= SLI4_SGE_DATA_OFFSET_MASK & io->sge_offset; in efct_hw_io_add_sge()
1815 sge_flags |= SLI4_SGE_LAST; in efct_hw_io_add_sge()
1816 data->dw2_flags = cpu_to_le32(sge_flags); in efct_hw_io_add_sge()
1819 sge_flags = le32_to_cpu(data[-1].dw2_flags); in efct_hw_io_add_sge()
1820 sge_flags &= ~SLI4_SGE_LAST; in efct_hw_io_add_sge()
1821 data[-1].dw2_flags = cpu_to_le32(sge_flags); in efct_hw_io_add_sge()