Lines Matching defs:ucc_slow_private
184 struct ucc_slow_private { struct
185 struct ucc_slow_info *us_info;
186 struct ucc_slow __iomem *us_regs; /* Ptr to memory map of UCC regs */
187 struct ucc_slow_pram __iomem *us_pram; /* a pointer to the parameter RAM */
188 s32 us_pram_offset;
189 int enabled_tx; /* Whether channel is enabled for Tx (ENT) */
190 int enabled_rx; /* Whether channel is enabled for Rx (ENR) */
191 int stopped_tx; /* Whether channel has been stopped for Tx
193 int stopped_rx; /* Whether channel has been stopped for Rx */
194 struct list_head confQ; /* frames passed to chip waiting for tx */
195 u32 first_tx_bd_mask; /* mask is used in Tx routine to save status
197 s32 tx_base_offset; /* first BD in Tx BD table offset (In MURAM) */
198 s32 rx_base_offset; /* first BD in Rx BD table offset (In MURAM) */
222 int ucc_slow_init(struct ucc_slow_info * us_info, struct ucc_slow_private ** uccs_ret); argument