• Home
  • Raw
  • Download

Lines Matching refs:q

80 struct output_more_immediate { __le32 q[8]; };  member
81 struct output_more { __le32 q[4]; }; member
82 struct output_last { __le32 q[4]; }; member
83 struct input_more { __le32 q[4]; }; member
84 struct input_last { __le32 q[4]; }; member
94 …omi->q[0] = cpu_to_le32(0x02000000 | 8); /* OUTPUT_MORE_IMMEDIATE; 8 is the size of the IT header … in fill_output_more_immediate()
95 omi->q[1] = cpu_to_le32(0); in fill_output_more_immediate()
96 omi->q[2] = cpu_to_le32(0); in fill_output_more_immediate()
97 omi->q[3] = cpu_to_le32(0); in fill_output_more_immediate()
100 omi->q[4] = cpu_to_le32( (0x0 << 16) /* IEEE1394_SPEED_100 */ in fill_output_more_immediate()
107 omi->q[5] = cpu_to_le32((payload_size << 16) | (0x7F << 8) | 0xA0); in fill_output_more_immediate()
109 omi->q[6] = cpu_to_le32(0); in fill_output_more_immediate()
110 omi->q[7] = cpu_to_le32(0); in fill_output_more_immediate()
117 om->q[0] = cpu_to_le32(data_size); in fill_output_more()
118 om->q[1] = cpu_to_le32(data_phys_addr); in fill_output_more()
119 om->q[2] = cpu_to_le32(0); in fill_output_more()
120 om->q[3] = cpu_to_le32(0); in fill_output_more()
141 ol->q[0] = cpu_to_le32(temp); in fill_output_last()
142 ol->q[1] = cpu_to_le32(data_phys_addr); in fill_output_last()
143 ol->q[2] = cpu_to_le32(0); in fill_output_last()
144 ol->q[3] = cpu_to_le32(0); in fill_output_last()
162 im->q[0] = cpu_to_le32(temp); in fill_input_more()
163 im->q[1] = cpu_to_le32(data_phys_addr); in fill_input_more()
164 im->q[2] = cpu_to_le32(0); /* branchAddress and Z not use in packet-per-buffer mode */ in fill_input_more()
165 im->q[3] = cpu_to_le32(0); /* xferStatus & resCount, resCount must be initialize to data_size */ in fill_input_more()
181 il->q[0] = cpu_to_le32(temp); in fill_input_last()
182 il->q[1] = cpu_to_le32(data_phys_addr); in fill_input_last()
183 il->q[2] = cpu_to_le32(1); /* branchAddress (filled in later) and Z = 1 descriptor in next block */ in fill_input_last()
184 …il->q[3] = cpu_to_le32(data_size); /* xferStatus & resCount, resCount must be initialize to data_s… in fill_input_last()