1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * (C) Copyright 2000
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 */
6
7#ifndef	_IDE_H
8#define _IDE_H
9
10#include <blk.h>
11
12#define IDE_BUS(dev)	(dev / (CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS))
13
14/**
15 * ide_set_reset() - Assert or de-assert reset for the IDE device
16 *
17 * This is provided by boards which need to reset the device through another
18 * means, e.g. a GPIO.
19 *
20 * @idereset: 1 to assert reset, 0 to de-assert it
21 */
22void ide_set_reset(int idereset);
23
24#endif /* _IDE_H */
25