]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/ide.h
common: arm: davinci: Move header file out of common
[people/ms/u-boot.git] / include / ide.h
CommitLineData
0f9cfa09
WD
1/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
0f9cfa09
WD
6 */
7
8#ifndef _IDE_H
9#define _IDE_H
10
1a73661b
SG
11#include <blk.h>
12
8a10180d 13#define IDE_BUS(dev) (dev / (CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS))
0f9cfa09 14
6d0f6bcf 15#define ATA_CURR_BASE(dev) (CONFIG_SYS_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)])
f5b82c0f 16extern ulong ide_bus_offset[];
f98984cb 17
0f9cfa09
WD
18#ifdef CONFIG_IDE_LED
19
20/*
21 * LED Port
22 */
23#define LED_PORT ((uchar *)(PER8_BASE + 0x3000))
24#define LED_IDE1 0x01
25#define LED_IDE2 0x02
26#define DEVICE_LED(d) ((d & 2) | ((d & 2) == 0)) /* depends on bit positions! */
27
611aee2b 28void ide_led(uchar led, uchar status);
0f9cfa09
WD
29#endif /* CONFIG_IDE_LED */
30
31/*
32 * Function Prototypes
33 */
34
735dd97b 35void ide_init(void);
4101f687 36struct blk_desc;
145df842
SG
37struct udevice;
38#ifdef CONFIG_BLK
39ulong ide_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
40 void *buffer);
41ulong ide_write(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
42 const void *buffer);
43#else
4101f687 44ulong ide_read(struct blk_desc *block_dev, lbaint_t blknr, lbaint_t blkcnt,
7c4213f6 45 void *buffer);
4101f687 46ulong ide_write(struct blk_desc *block_dev, lbaint_t blknr, lbaint_t blkcnt,
ff8fef56 47 const void *buffer);
145df842 48#endif
0f9cfa09 49
8d1165e1
PH
50#ifdef CONFIG_IDE_PREINIT
51int ide_preinit(void);
52#endif
53
54#ifdef CONFIG_IDE_INIT_POSTRESET
55int ide_init_postreset(void);
56#endif
57
3887c3fb
HS
58#if defined(CONFIG_OF_IDE_FIXUP)
59int ide_device_present(int dev);
60#endif
0abddf82
ML
61
62#if defined(CONFIG_IDE_AHB)
63unsigned char ide_read_register(int dev, unsigned int port);
64void ide_write_register(int dev, unsigned int port, unsigned char val);
65void ide_read_data(int dev, ulong *sect_buf, int words);
c575180b 66void ide_write_data(int dev, const ulong *sect_buf, int words);
0abddf82 67#endif
f5b82c0f
PH
68
69/*
70 * I/O function overrides
71 */
288afdc9
JH
72unsigned char ide_inb(int dev, int port);
73void ide_outb(int dev, int port, unsigned char val);
f5b82c0f
PH
74void ide_input_swap_data(int dev, ulong *sect_buf, int words);
75void ide_input_data(int dev, ulong *sect_buf, int words);
76void ide_output_data(int dev, const ulong *sect_buf, int words);
77void ide_input_data_shorts(int dev, ushort *sect_buf, int shorts);
78void ide_output_data_shorts(int dev, ushort *sect_buf, int shorts);
79
288afdc9
JH
80void ide_led(uchar led, uchar status);
81
c2240d4d
SG
82/**
83 * board_start_ide() - Start up the board IDE interfac
84 *
85 * @return 0 if ok
86 */
87int board_start_ide(void);
88
0f9cfa09 89#endif /* _IDE_H */