Home
last modified time | relevance | path

Searched refs:ctl1 (Results 1 – 7 of 7) sorted by relevance

/drivers/gpu/drm/i915/
Ddvo_tfp410.c239 uint8_t ctl1; in tfp410_dpms() local
241 if (!tfp410_readb(dvo, TFP410_CTL_1, &ctl1)) in tfp410_dpms()
245 ctl1 |= TFP410_CTL_1_PD; in tfp410_dpms()
247 ctl1 &= ~TFP410_CTL_1_PD; in tfp410_dpms()
249 tfp410_writeb(dvo, TFP410_CTL_1, ctl1); in tfp410_dpms()
254 uint8_t ctl1; in tfp410_get_hw_state() local
256 if (!tfp410_readb(dvo, TFP410_CTL_1, &ctl1)) in tfp410_get_hw_state()
259 if (ctl1 & TFP410_CTL_1_PD) in tfp410_get_hw_state()
/drivers/mtd/nand/
Dcafe_nand.c64 uint32_t ctl1; member
168 uint32_t ctl1; in cafe_nand_cmdfunc() local
177 ctl1 = cafe->ctl1; in cafe_nand_cmdfunc()
180 cafe->ctl1, cafe->nr_data); in cafe_nand_cmdfunc()
214 ctl1 = 0x80000000 | command | (cafe->ctl1 & CTRL1_CHIPSELECT); in cafe_nand_cmdfunc()
218 ctl1 |= (1<<26); /* rd */ in cafe_nand_cmdfunc()
225 ctl1 |= 1<<26; /* rd */ in cafe_nand_cmdfunc()
229 ctl1 |= 1<<25; /* wr */ in cafe_nand_cmdfunc()
233 ctl1 |= ((adrbytes-1)|8) << 27; in cafe_nand_cmdfunc()
238 cafe->ctl1 = ctl1; in cafe_nand_cmdfunc()
[all …]
/drivers/net/wireless/ath/ath9k/
Dar9002_mac.c215 u32 ctl1, ctl6; in ar9002_set_txdesc() local
226 ctl1 = i->buf_len[0] | (i->is_last ? 0 : AR_TxMore); in ar9002_set_txdesc()
256 ACCESS_ONCE(ads->ds_ctl1) = ctl1; in ar9002_set_txdesc()
261 ctl1 |= (i->keyix != ATH9K_TXKEYIX_INVALID ? SM(i->keyix, AR_DestIdx) : 0) in ar9002_set_txdesc()
272 ctl1 |= AR_IsAggr | AR_MoreAggr; in ar9002_set_txdesc()
276 ctl1 |= AR_IsAggr; in ar9002_set_txdesc()
292 ACCESS_ONCE(ads->ds_ctl1) = ctl1; in ar9002_set_txdesc()
/drivers/net/ethernet/broadcom/
Dbgmac.c112 u32 ctl1; in bgmac_dma_tx_add_buf() local
117 ctl1 = len & BGMAC_DESC_CTL1_LEN; in bgmac_dma_tx_add_buf()
124 dma_desc->ctl1 = cpu_to_le32(ctl1); in bgmac_dma_tx_add_buf()
213 u32 ctl1 = le32_to_cpu(ring->cpu_base[index].ctl1); in bgmac_dma_tx_add() local
214 int len = ctl1 & BGMAC_DESC_CTL1_LEN; in bgmac_dma_tx_add()
248 u32 ctl0, ctl1; in bgmac_dma_tx_free() local
255 ctl1 = le32_to_cpu(ring->cpu_base[slot_idx].ctl1); in bgmac_dma_tx_free()
256 len = ctl1 & BGMAC_DESC_CTL1_LEN; in bgmac_dma_tx_free()
379 u32 ctl0 = 0, ctl1 = 0; in bgmac_dma_rx_setup_desc() local
383 ctl1 |= BGMAC_RX_BUF_SIZE & BGMAC_DESC_CTL1_LEN; in bgmac_dma_rx_setup_desc()
[all …]
Dbgmac.h423 __le32 ctl1; member
/drivers/net/can/mscan/
Dmscan.c640 u8 ctl1; in register_mscandev() local
642 ctl1 = in_8(&regs->canctl1); in register_mscandev()
644 ctl1 |= MSCAN_CLKSRC; in register_mscandev()
646 ctl1 &= ~MSCAN_CLKSRC; in register_mscandev()
650 ctl1 |= MSCAN_BORM; /* bus-off recovery upon request */ in register_mscandev()
653 ctl1 |= MSCAN_CANE; in register_mscandev()
654 out_8(&regs->canctl1, ctl1); in register_mscandev()
/drivers/net/wireless/broadcom/b43/
Ddma.c197 u32 ctl0 = 0, ctl1 = 0; in op64_fill_descriptor() local
216 ctl1 |= bufsize & B43_DMA64_DCTL1_BYTECNT; in op64_fill_descriptor()
217 ctl1 |= (addrext << B43_DMA64_DCTL1_ADDREXT_SHIFT) in op64_fill_descriptor()
221 desc->dma64.control1 = cpu_to_le32(ctl1); in op64_fill_descriptor()