summaryrefslogtreecommitdiffstats
path: root/firmware/include/disk_cache.h
blob: 79b2ccf2c6c8c4340c3ee0800911614887e57967 (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
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2014 by Michael Sevakis
 *
 * 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 DISK_CACHE_H
#define DISK_CACHE_H

#include "mutex.h"
#include "mv.h"

static inline void dc_lock_cache(void)
{
    extern struct mutex disk_cache_mutex;
    mutex_lock(&disk_cache_mutex);
}

static inline void dc_unlock_cache(void)
{
    extern struct mutex disk_cache_mutex;
    mutex_unlock(&disk_cache_mutex);
}

void * dc_cache_probe(IF_MV(int volume,) unsigned long secnum,
                      unsigned int *flags);
void dc_dirty_buf(void *buf);
void dc_discard_buf(void *buf);
void dc_commit_all(IF_MV_NONVOID(int volume));
void dc_discard_all(IF_MV_NONVOID(int volume));

void dc_init(void) INIT_ATTR;

/* in addition to filling, writeback is implemented by the client */
extern void dc_writeback_callback(IF_MV(int volume, ) unsigned long sector,
                                  void *buf);


/** These synchronize and can be called by anyone **/

/* expropriate a buffer from the cache of DC_CACHE_BUFSIZE bytes */
void * dc_get_buffer(void);
/* return buffer to the cache by buffer */
void dc_release_buffer(void *buf);

#endif /* DISK_CACHE_H */