2018-05-07 05:58:06 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2002-08-27 18:38:37 +08:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _IDE_H
|
|
|
|
#define _IDE_H
|
|
|
|
|
2016-03-01 06:25:39 +08:00
|
|
|
#include <blk.h>
|
|
|
|
|
2012-05-14 17:29:10 +08:00
|
|
|
#define IDE_BUS(dev) (dev / (CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS))
|
2002-08-27 18:38:37 +08:00
|
|
|
|
2008-10-16 21:01:15 +08:00
|
|
|
#define ATA_CURR_BASE(dev) (CONFIG_SYS_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)])
|
2012-10-09 15:04:39 +08:00
|
|
|
extern ulong ide_bus_offset[];
|
2007-08-28 23:39:14 +08:00
|
|
|
|
2002-08-27 18:38:37 +08:00
|
|
|
/*
|
|
|
|
* Function Prototypes
|
|
|
|
*/
|
|
|
|
|
2007-02-20 16:04:34 +08:00
|
|
|
void ide_init(void);
|
2016-03-01 06:25:34 +08:00
|
|
|
struct blk_desc;
|
2016-05-02 01:36:22 +08:00
|
|
|
struct udevice;
|
|
|
|
#ifdef CONFIG_BLK
|
|
|
|
ulong ide_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
|
|
|
|
void *buffer);
|
|
|
|
ulong ide_write(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
|
|
|
|
const void *buffer);
|
|
|
|
#else
|
2016-03-01 06:25:34 +08:00
|
|
|
ulong ide_read(struct blk_desc *block_dev, lbaint_t blknr, lbaint_t blkcnt,
|
2015-12-08 02:38:48 +08:00
|
|
|
void *buffer);
|
2016-03-01 06:25:34 +08:00
|
|
|
ulong ide_write(struct blk_desc *block_dev, lbaint_t blknr, lbaint_t blkcnt,
|
2013-06-14 19:07:25 +08:00
|
|
|
const void *buffer);
|
2016-05-02 01:36:22 +08:00
|
|
|
#endif
|
2002-08-27 18:38:37 +08:00
|
|
|
|
2012-10-09 15:01:56 +08:00
|
|
|
#ifdef CONFIG_IDE_PREINIT
|
|
|
|
int ide_preinit(void);
|
|
|
|
#endif
|
|
|
|
|
2009-09-23 13:56:08 +08:00
|
|
|
#if defined(CONFIG_OF_IDE_FIXUP)
|
|
|
|
int ide_device_present(int dev);
|
|
|
|
#endif
|
2011-04-12 04:45:32 +08:00
|
|
|
|
2012-10-09 15:04:39 +08:00
|
|
|
/*
|
|
|
|
* I/O function overrides
|
|
|
|
*/
|
2014-07-12 21:07:19 +08:00
|
|
|
unsigned char ide_inb(int dev, int port);
|
|
|
|
void ide_outb(int dev, int port, unsigned char val);
|
2012-10-09 15:04:39 +08:00
|
|
|
void ide_input_swap_data(int dev, ulong *sect_buf, int words);
|
|
|
|
void ide_input_data(int dev, ulong *sect_buf, int words);
|
|
|
|
void ide_output_data(int dev, const ulong *sect_buf, int words);
|
|
|
|
void ide_input_data_shorts(int dev, ushort *sect_buf, int shorts);
|
|
|
|
void ide_output_data_shorts(int dev, ushort *sect_buf, int shorts);
|
|
|
|
|
2014-07-12 21:07:19 +08:00
|
|
|
void ide_led(uchar led, uchar status);
|
|
|
|
|
2013-03-14 15:20:12 +08:00
|
|
|
/**
|
|
|
|
* board_start_ide() - Start up the board IDE interfac
|
|
|
|
*
|
2022-01-20 01:05:50 +08:00
|
|
|
* Return: 0 if ok
|
2013-03-14 15:20:12 +08:00
|
|
|
*/
|
|
|
|
int board_start_ide(void);
|
|
|
|
|
2002-08-27 18:38:37 +08:00
|
|
|
#endif /* _IDE_H */
|