source: mainline/uspace/srv/bd/ata_bd/ata_bd.h@ 96cbd18

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 96cbd18 was 96cbd18, checked in by Jiri Svoboda <jiri@…>, 12 years ago

Encapsulate controller state in ata_bd.

  • Property mode set to 100644
File size: 3.6 KB
Line 
1/*
2 * Copyright (c) 2009 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup bd
30 * @{
31 */
32/** @file ATA driver definitions.
33 */
34
35#ifndef __ATA_BD_H__
36#define __ATA_BD_H__
37
38#include <bd_srv.h>
39#include <sys/types.h>
40#include <fibril_synch.h>
41#include <str.h>
42
43/** Base addresses for ATA I/O blocks. */
44typedef struct {
45 uintptr_t cmd; /**< Command block base address. */
46 uintptr_t ctl; /**< Control block base address. */
47} ata_base_t;
48
49/** Timeout definitions. Unit is 10 ms. */
50enum ata_timeout {
51 TIMEOUT_PROBE = 100, /* 1 s */
52 TIMEOUT_BSY = 100, /* 1 s */
53 TIMEOUT_DRDY = 1000 /* 10 s */
54};
55
56enum ata_dev_type {
57 ata_reg_dev, /* Register device (no packet feature set support) */
58 ata_pkt_dev /* Packet device (supports packet feature set). */
59};
60
61/** Register device block addressing mode. */
62enum rd_addr_mode {
63 am_chs, /**< CHS block addressing */
64 am_lba28, /**< LBA-28 block addressing */
65 am_lba48 /**< LBA-48 block addressing */
66};
67
68/** Block coordinates */
69typedef struct {
70 enum rd_addr_mode amode;
71
72 union {
73 /** CHS coordinates */
74 struct {
75 uint8_t sector;
76 uint8_t cyl_lo;
77 uint8_t cyl_hi;
78 };
79 /** LBA coordinates */
80 struct {
81 uint8_t c0;
82 uint8_t c1;
83 uint8_t c2;
84 uint8_t c3;
85 uint8_t c4;
86 uint8_t c5;
87 };
88 };
89
90 /** Lower 4 bits for device/head register */
91 uint8_t h;
92} block_coord_t;
93
94/** ATA device state structure. */
95typedef struct {
96 bool present;
97 struct ata_ctrl *ctrl;
98
99 /** Device type */
100 enum ata_dev_type dev_type;
101
102 /** Addressing mode to use (if register device) */
103 enum rd_addr_mode amode;
104
105 /*
106 * Geometry. Only valid if operating in CHS mode.
107 */
108 struct {
109 unsigned heads;
110 unsigned cylinders;
111 unsigned sectors;
112 } geom;
113
114 uint64_t blocks;
115 size_t block_size;
116
117 char model[STR_BOUNDS(40) + 1];
118
119 fibril_mutex_t lock;
120 service_id_t service_id;
121 int disk_id;
122 bd_srvs_t bds;
123} disk_t;
124
125/** ATA controller */
126typedef struct ata_ctrl {
127 /** I/O base address of the command registers */
128 uintptr_t cmd_physical;
129 /** I/O base address of the control registers */
130 uintptr_t ctl_physical;
131
132 /** Command registers */
133 ata_cmd_t *cmd;
134 /** Control registers */
135 ata_ctl_t *ctl;
136
137 /** Per-disk state. */
138 disk_t disk[MAX_DISKS];
139} ata_ctrl_t;
140
141#endif
142
143/** @}
144 */
Note: See TracBrowser for help on using the repository browser.