Home
last modified time | relevance | path

Searched refs:command (Results 1 – 8 of 8) sorted by relevance

/DragonOS-0.1.7/docs/
Dmake.bat18 echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
/DragonOS-0.1.7/kernel/src/driver/pci/
Dpci.rs305 let command = Command::from_bits_truncate(common_header.command); in status_command() localVariable
306 (status, command) in status_command()
309 fn set_command(&mut self, command: Command) { in set_command()
311 let command = command.bits(); in set_command() localVariable
312 common_header.command = command; in set_command()
316 command as u32, in set_command()
348 pub command: u16, // 提供对设备生成和响应pci周期的能力的控制 向该寄存器写入0时,设备与pci总线断开除配置空间访问以外的所有连接 field
657 let command = result as u16; in pci_read_header() localVariable
682 command, in pci_read_header()
/DragonOS-0.1.7/kernel/src/driver/disk/ahci/
Dahci.h65 uint8_t command; // Command register member
Dahcidisk.rs138 volatile_write!(cmdfis.command, ATA_CMD_READ_DMA_EXT); in read_at()
275 volatile_write!(cmdfis.command, ATA_CMD_WRITE_DMA_EXT); in write_at()
Dhba.rs279 pub command: u8, // Command register field
/DragonOS-0.1.7/kernel/src/driver/usb/xhci/
Dxhci.c113 trb->command = __read4b(address + 12); in xhci_get_trb()
126 __write4b(address + 12, trb->command); in xhci_set_trb()
696 …while ((event_trb.command & 1) == xhci_hc[cid].current_event_ring_cycle) // 循环处理处于当前周期的所有event ring in xhci_hc_irq_handler()
701 if ((event_trb.command & (1 << 2)) == 0) // 当前event trb不是由于short packet产生的 in xhci_hc_irq_handler()
720 origin_trb.command &= 0x00ffffff; in xhci_hc_irq_handler()
721 origin_trb.command |= (event_trb.command & 0xff000000); in xhci_hc_irq_handler()
1977 __write4b(xhci_hc[id].cmd_trb_vaddr + 12, trb->command | xhci_hc[id].cmd_trb_cycle); // 命令 in xhci_send_command()
Dxhci.h203 uint32_t command; member
/DragonOS-0.1.7/docs/community/ChangeLog/V0.1.x/
DV0.1.6.md276 * bugfix: 初始化BAR之后,未正确设置command register的问题