Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 15a4f943 authored by Bartlomiej Zolnierkiewicz's avatar Bartlomiej Zolnierkiewicz
Browse files

ide: fix pre-EIDE SWDMA support



If the word 62 is not defined use the word 52 to get SWDMA mask
in ide_get_mode_mask().

Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent ecea5730
Loading
Loading
Loading
Loading
+15 −1
Original line number Original line Diff line number Diff line
@@ -702,8 +702,22 @@ static unsigned int ide_get_mode_mask(ide_drive_t *drive, u8 base)
			mask = id->dma_mword & hwif->mwdma_mask;
			mask = id->dma_mword & hwif->mwdma_mask;
		break;
		break;
	case XFER_SW_DMA_0:
	case XFER_SW_DMA_0:
		if (id->field_valid & 2)
		if (id->field_valid & 2) {
			mask = id->dma_1word & hwif->swdma_mask;
			mask = id->dma_1word & hwif->swdma_mask;
		} else if (id->tDMA) {
			/*
			 * ide_fix_driveid() doesn't convert ->tDMA to the
			 * CPU endianness so we need to do it here
			 */
			u8 mode = le16_to_cpu(id->tDMA);

			/*
			 * if the mode is valid convert it to the mask
			 * (the maximum allowed mode is XFER_SW_DMA_2)
			 */
			if (mode <= 2)
				mask = ((2 << mode) - 1) & hwif->swdma_mask;
		}
		break;
		break;
	default:
	default:
		BUG();
		BUG();