blob: 2c25e74ede08e478759cd536466543db8b38e718 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenk0f9cfa02002-08-27 10:38:37 +00002/*
3 * (C) Copyright 2000
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk0f9cfa02002-08-27 10:38:37 +00005 */
6
7#ifndef _IDE_H
8#define _IDE_H
9
Simon Glass1a736612016-02-29 15:25:39 -070010#include <blk.h>
11
Luka Perkov8a101802012-05-14 09:29:10 +000012#define IDE_BUS(dev) (dev / (CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS))
wdenk0f9cfa02002-08-27 10:38:37 +000013
Simon Glass1486c902023-04-25 10:54:34 -060014/**
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
wdenk0f9cfa02002-08-27 10:38:37 +000024#endif /* _IDE_H */