3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
11 #define IDE_BUS(dev) (dev / (CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS))
13 #define ATA_CURR_BASE(dev) (CONFIG_SYS_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)])
14 extern ulong ide_bus_offset[];
21 #define LED_PORT ((uchar *)(PER8_BASE + 0x3000))
24 #define DEVICE_LED(d) ((d & 2) | ((d & 2) == 0)) /* depends on bit positions! */
26 void ide_led(uchar led, uchar status);
27 #endif /* CONFIG_IDE_LED */
29 #ifdef CONFIG_SYS_64BIT_LBA
30 typedef uint64_t lbaint_t;
34 typedef ulong lbaint_t;
44 ulong ide_read(int device, lbaint_t blknr, lbaint_t blkcnt, void *buffer);
45 ulong ide_write(int device, lbaint_t blknr, lbaint_t blkcnt,
48 #ifdef CONFIG_IDE_PREINIT
49 int ide_preinit(void);
52 #ifdef CONFIG_IDE_INIT_POSTRESET
53 int ide_init_postreset(void);
56 #if defined(CONFIG_OF_IDE_FIXUP)
57 int ide_device_present(int dev);
60 #if defined(CONFIG_IDE_AHB)
61 unsigned char ide_read_register(int dev, unsigned int port);
62 void ide_write_register(int dev, unsigned int port, unsigned char val);
63 void ide_read_data(int dev, ulong *sect_buf, int words);
64 void ide_write_data(int dev, const ulong *sect_buf, int words);
68 * I/O function overrides
70 unsigned char ide_inb(int dev, int port);
71 void ide_outb(int dev, int port, unsigned char val);
72 void ide_input_swap_data(int dev, ulong *sect_buf, int words);
73 void ide_input_data(int dev, ulong *sect_buf, int words);
74 void ide_output_data(int dev, const ulong *sect_buf, int words);
75 void ide_input_data_shorts(int dev, ushort *sect_buf, int shorts);
76 void ide_output_data_shorts(int dev, ushort *sect_buf, int shorts);
78 void ide_led(uchar led, uchar status);
81 * board_start_ide() - Start up the board IDE interfac
85 int board_start_ide(void);