summaryrefslogtreecommitdiffstats
path: root/firmware/export/storage.h
blob: 95e42f67f48cd4be0005337881ad13517bad7a86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2002 by Alan Korr
 * Copyright (C) 2008 by Frank Gevaerts
 *
 * 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 software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#ifndef __STORAGE_H__
#define __STORAGE_H__

#include <stdbool.h>
#include "config.h" /* for HAVE_MULTIVOLUME or not */
#include "mv.h"

#if (CONFIG_STORAGE & STORAGE_SD)
#include "sd.h"
#endif
#if (CONFIG_STORAGE & STORAGE_MMC)
#include "mmc.h"
#endif
#if (CONFIG_STORAGE & STORAGE_ATA)
#include "ata.h"
#endif
#if (CONFIG_STORAGE & STORAGE_NAND)
#include "nand.h"
#endif

struct storage_info
{
    unsigned int sector_size;
    unsigned int num_sectors;
    char *vendor;
    char *product;
    char *revision;
};

void storage_spindown(int seconds);

static inline void storage_enable(bool on)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    ata_enable(on);
#elif (CONFIG_STORAGE & STORAGE_SD)
    sd_enable(on);
#elif (CONFIG_STORAGE & STORAGE_MMC)
    mmc_enable(on);
#else
    (void)on;
#endif
}
static inline void storage_sleep(void)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    ata_sleep();
#endif
}
static inline void storage_sleepnow(void)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    ata_sleepnow();
#endif
}
static inline bool storage_disk_is_active(void)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    return ata_disk_is_active();
#elif (CONFIG_STORAGE & STORAGE_MMC)
    return mmc_disk_is_active();
#else
    return 0;
#endif
}
static inline int storage_hard_reset(void)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    return ata_hard_reset();
#else
    return 0;
#endif
}
static inline int storage_soft_reset(void)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    return ata_soft_reset();
#else
    return 0;
#endif
}
static inline int storage_init(void)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    return ata_init();
#elif (CONFIG_STORAGE & STORAGE_SD)
    return sd_init();
#elif (CONFIG_STORAGE & STORAGE_NAND)
    return nand_init();
#elif (CONFIG_STORAGE & STORAGE_MMC)
    return mmc_init();
#else
    #error No storage driver!
#endif
}
static inline int storage_read_sectors(IF_MV2(int drive,) unsigned long start, int count, void* buf)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    return ata_read_sectors(IF_MV2(drive,) start, count, buf);
#elif (CONFIG_STORAGE & STORAGE_SD)
    return sd_read_sectors(IF_MV2(drive,) start, count, buf);
#elif (CONFIG_STORAGE & STORAGE_NAND)
    return nand_read_sectors(IF_MV2(drive,) start, count, buf);
#elif (CONFIG_STORAGE & STORAGE_MMC)
    return mmc_read_sectors(IF_MV2(drive,) start, count, buf);
#else
    #error No storage driver!
#endif
}
static inline int storage_write_sectors(IF_MV2(int drive,) unsigned long start, int count, const void* buf)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    return ata_write_sectors(IF_MV2(drive,) start, count, buf);
#elif (CONFIG_STORAGE & STORAGE_SD)
    return sd_write_sectors(IF_MV2(drive,) start, count, buf);
#elif (CONFIG_STORAGE & STORAGE_NAND)
    return nand_write_sectors(IF_MV2(drive,) start, count, buf);
#elif (CONFIG_STORAGE & STORAGE_MMC)
    return mmc_write_sectors(IF_MV2(drive,) start, count, buf);
#else
    #error No storage driver!
#endif
}
static inline void storage_spin(void)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    ata_spin();
#endif
}

#if (CONFIG_LED == LED_REAL)
static inline void storage_set_led_enabled(bool enabled)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    ata_set_led_enabled(enabled);
#elif (CONFIG_STORAGE & STORAGE_SD)
    sd_set_led_enabled(enabled);
#elif (CONFIG_STORAGE & STORAGE_NAND)
    nand_set_led_enabled(enabled);
#elif (CONFIG_STORAGE & STORAGE_MMC)
    mmc_set_led_enabled(enabled);
#else
    #error No storage driver!
#endif
}
#endif

static inline long storage_last_disk_activity(void)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    return ata_last_disk_activity();
#elif (CONFIG_STORAGE & STORAGE_SD)
    return sd_last_disk_activity();
#elif (CONFIG_STORAGE & STORAGE_NAND)
    return nand_last_disk_activity();
#elif (CONFIG_STORAGE & STORAGE_MMC)
    return mmc_last_disk_activity();
#else
    #error No storage driver!
#endif
}

static inline int storage_spinup_time(void)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    return ata_spinup_time();
#else
    return 0;
#endif
}

static inline void storage_get_info(IF_MV2(int drive,) struct storage_info *info)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    return ata_get_info(IF_MV2(drive,) info);
#elif (CONFIG_STORAGE & STORAGE_SD)
    return sd_get_info(IF_MV2(drive,) info);
#elif (CONFIG_STORAGE & STORAGE_NAND)
    return nand_get_info(IF_MV2(drive,) info);
#elif (CONFIG_STORAGE & STORAGE_MMC)
    return mmc_get_info(IF_MV2(drive,) info);
#else
    #error No storage driver!
#endif
}

#ifdef HAVE_HOTSWAP
static inline bool storage_removable(IF_MV_NONVOID(int drive))
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    return ata_removable(IF_MV(drive));
#elif (CONFIG_STORAGE & STORAGE_SD)
    return sd_removable(IF_MV(drive));
#elif (CONFIG_STORAGE & STORAGE_NAND)
    return nand_removable(IF_MV(drive));
#elif (CONFIG_STORAGE & STORAGE_MMC)
    return mmc_removable(IF_MV(drive));
#else
    #error No storage driver!
#endif
}

static inline bool storage_present(IF_MV_NONVOID(int drive))
{
#if (CONFIG_STORAGE & STORAGE_ATA)
    return ata_present(IF_MV(drive));
#elif (CONFIG_STORAGE & STORAGE_SD)
    return sd_present(IF_MV(drive));
#elif (CONFIG_STORAGE & STORAGE_NAND)
    return nand_present(IF_MV(drive));
#elif (CONFIG_STORAGE & STORAGE_MMC)
    return mmc_present(IF_MV(drive));
#else
    #error No storage driver!
#endif
}
#endif
#endif