]> git.ozlabs.org Git - yaboot.git/blob - include/fs.h
Commit yaboot 1.3.1
[yaboot.git] / include / fs.h
1 /*
2     FileSystems common definitions
3
4     Copyright (C) 1999 Benjamin Herrenschmidt
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #ifndef FS_H
22 #define FS_H
23
24 #include "partition.h"
25 #include "file.h"
26
27 struct fs_t {
28         const char* name;
29
30         int (*open)(    struct boot_file_t*     file,
31                         const char*             dev_name,
32                         struct partition_t*     part,
33                         const char*             file_name);
34                         
35         int (*read)(    struct boot_file_t*     file,
36                         unsigned int            size,
37                         void*                   buffer);
38                                 
39         int (*seek)(    struct boot_file_t*     file,
40                         unsigned int            newpos);
41                                         
42         int (*close)(   struct boot_file_t*     file);
43 };
44
45 extern const struct fs_t *fs_of;
46 extern const struct fs_t *fs_of_netboot;
47
48 const struct fs_t *fs_open( struct boot_file_t *file, const char *dev_name,
49                             struct partition_t *part, const char *file_name );
50
51 #if DEBUG
52 # define DEBUG_ENTER prom_printf( "--> %s\n", __PRETTY_FUNCTION__ );
53 # define DEBUG_LEAVE(str) \
54     prom_printf( "<-- %s - %s\n", __PRETTY_FUNCTION__, #str );
55 # define DEBUG_F(fmt, args...)\
56 {\
57     prom_printf( "    %s - ", __PRETTY_FUNCTION__ );\
58     prom_printf( fmt, ## args );\
59 }
60 # define DEBUG_OPEN DEBUG_F( "dev=%s, part=0x%08lx (%d), file_name=%s\n",\
61                              dev_name, part, part ? part->part_number : -1,\
62                              file_name);
63 #else
64 #define DEBUG_ENTER
65 #define DEBUG_LEAVE(x)
66 #define DEBUG_F(fmt, args...)
67 #define DEBUG_OPEN
68 #endif
69
70 #endif