Home
last modified time | relevance | path

Searched refs:h2d (Results 1 – 3 of 3) sorted by relevance

/openbmc/u-boot/drivers/ata/
H A Dfsl_sata.c298 sata_fis_h2d_t *h2d; in fsl_ata_exec_ata_cmd() local
317 h2d = (sata_fis_h2d_t *)cmd_desc->cfis; in fsl_ata_exec_ata_cmd()
320 memset((void *)h2d, 0, SATA_HC_CMD_DESC_CFIS_SIZE); in fsl_ata_exec_ata_cmd()
323 h2d->fis_type = cfis->fis_type; in fsl_ata_exec_ata_cmd()
324 h2d->pm_port_c = cfis->pm_port_c; in fsl_ata_exec_ata_cmd()
325 h2d->command = cfis->command; in fsl_ata_exec_ata_cmd()
327 h2d->features = cfis->features; in fsl_ata_exec_ata_cmd()
328 h2d->features_exp = cfis->features_exp; in fsl_ata_exec_ata_cmd()
330 h2d->lba_low = cfis->lba_low; in fsl_ata_exec_ata_cmd()
331 h2d->lba_mid = cfis->lba_mid; in fsl_ata_exec_ata_cmd()
[all …]
H A Ddwc_ahsata.c420 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); in ahci_set_feature()
421 struct sata_fis_h2d *cfis = &h2d; in ahci_set_feature()
527 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); in dwc_ahsata_identify()
528 struct sata_fis_h2d *cfis = &h2d; in dwc_ahsata_identify()
552 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); in dwc_ahsata_rw_cmd()
553 struct sata_fis_h2d *cfis = &h2d; in dwc_ahsata_rw_cmd()
581 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); in dwc_ahsata_flush_cache()
582 struct sata_fis_h2d *cfis = &h2d; in dwc_ahsata_flush_cache()
597 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); in dwc_ahsata_rw_cmd_ext()
598 struct sata_fis_h2d *cfis = &h2d; in dwc_ahsata_rw_cmd_ext()
[all …]
H A Dsata_mv.c796 struct sata_fis_h2d h2d; in mv_sata_identify() local
798 memset(&h2d, 0, sizeof(struct sata_fis_h2d)); in mv_sata_identify()
800 h2d.fis_type = SATA_FIS_TYPE_REGISTER_H2D; in mv_sata_identify()
801 h2d.command = ATA_CMD_ID_ATA; in mv_sata_identify()
806 return mv_ata_exec_ata_cmd_nondma(port, &h2d, (u8 *)id, in mv_sata_identify()