2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2002-08-27 10:38:37 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _IDE_H
|
|
|
|
#define _IDE_H
|
|
|
|
|
2016-02-29 22:25:39 +00:00
|
|
|
#include <blk.h>
|
|
|
|
|
2012-05-14 09:29:10 +00:00
|
|
|
#define IDE_BUS(dev) (dev / (CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS))
|
2002-08-27 10:38:37 +00:00
|
|
|
|
2023-04-25 16:54:34 +00:00
|
|
|
/**
|
|
|
|
* ide_set_reset() - Assert or de-assert reset for the IDE device
|
|
|
|
*
|
|
|
|
* This is provided by boards which need to reset the device through another
|
|
|
|
* means, e.g. a GPIO.
|
|
|
|
*
|
|
|
|
* @idereset: 1 to assert reset, 0 to de-assert it
|
|
|
|
*/
|
|
|
|
void ide_set_reset(int idereset);
|
|
|
|
|
2002-08-27 10:38:37 +00:00
|
|
|
#endif /* _IDE_H */
|