2002-08-27 10:38:37 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _IDE_H
|
|
|
|
#define _IDE_H
|
|
|
|
|
|
|
|
#define IDE_BUS(dev) (dev >> 1)
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#define ATA_CURR_BASE(dev) (CONFIG_SYS_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)])
|
2007-08-28 15:39:14 +00:00
|
|
|
|
2002-08-27 10:38:37 +00:00
|
|
|
#ifdef CONFIG_IDE_LED
|
|
|
|
|
|
|
|
/*
|
|
|
|
* LED Port
|
|
|
|
*/
|
|
|
|
#define LED_PORT ((uchar *)(PER8_BASE + 0x3000))
|
|
|
|
#define LED_IDE1 0x01
|
|
|
|
#define LED_IDE2 0x02
|
|
|
|
#define DEVICE_LED(d) ((d & 2) | ((d & 2) == 0)) /* depends on bit positions! */
|
|
|
|
|
|
|
|
#endif /* CONFIG_IDE_LED */
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifdef CONFIG_SYS_64BIT_LBA
|
2004-03-13 23:29:43 +00:00
|
|
|
typedef uint64_t lbaint_t;
|
|
|
|
#else
|
|
|
|
typedef ulong lbaint_t;
|
|
|
|
#endif
|
|
|
|
|
2002-08-27 10:38:37 +00:00
|
|
|
/*
|
|
|
|
* Function Prototypes
|
|
|
|
*/
|
|
|
|
|
2007-02-20 08:04:34 +00:00
|
|
|
void ide_init(void);
|
2007-02-20 08:05:45 +00:00
|
|
|
ulong ide_read(int device, lbaint_t blknr, ulong blkcnt, void *buffer);
|
2011-04-30 21:29:55 +00:00
|
|
|
ulong ide_write(int device, lbaint_t blknr, ulong blkcnt, const void *buffer);
|
2002-08-27 10:38:37 +00:00
|
|
|
|
2009-09-23 05:56:08 +00:00
|
|
|
#if defined(CONFIG_OF_IDE_FIXUP)
|
|
|
|
int ide_device_present(int dev);
|
|
|
|
#endif
|
2011-04-11 20:45:32 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_IDE_AHB)
|
|
|
|
unsigned char ide_read_register(int dev, unsigned int port);
|
|
|
|
void ide_write_register(int dev, unsigned int port, unsigned char val);
|
|
|
|
void ide_read_data(int dev, ulong *sect_buf, int words);
|
|
|
|
void ide_write_data(int dev, ulong *sect_buf, int words);
|
|
|
|
#endif
|
2002-08-27 10:38:37 +00:00
|
|
|
#endif /* _IDE_H */
|