aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/acpi/acpiosxf.h31
-rw-r--r--include/acpi/actypes.h9
-rw-r--r--tools/power/acpi/os_specific/service_layers/oslibcfs.c214
3 files changed, 254 insertions, 0 deletions
diff --git a/include/acpi/acpiosxf.h b/include/acpi/acpiosxf.h
index f6f5f8af2112..03b3e6d405ff 100644
--- a/include/acpi/acpiosxf.h
+++ b/include/acpi/acpiosxf.h
@@ -399,4 +399,35 @@ char *acpi_os_get_next_filename(void *dir_handle);
399void acpi_os_close_directory(void *dir_handle); 399void acpi_os_close_directory(void *dir_handle);
400#endif 400#endif
401 401
402/*
403 * File I/O and related support
404 */
405#ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_open_file
406ACPI_FILE acpi_os_open_file(const char *path, u8 modes);
407#endif
408
409#ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_close_file
410void acpi_os_close_file(ACPI_FILE file);
411#endif
412
413#ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_read_file
414int
415acpi_os_read_file(ACPI_FILE file,
416 void *buffer, acpi_size size, acpi_size count);
417#endif
418
419#ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_write_file
420int
421acpi_os_write_file(ACPI_FILE file,
422 void *buffer, acpi_size size, acpi_size count);
423#endif
424
425#ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_file_offset
426long acpi_os_get_file_offset(ACPI_FILE file);
427#endif
428
429#ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_set_file_offset
430acpi_status acpi_os_set_file_offset(ACPI_FILE file, long offset, u8 from);
431#endif
432
402#endif /* __ACPIOSXF_H__ */ 433#endif /* __ACPIOSXF_H__ */
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h
index 19b26bb69a70..5480209b4254 100644
--- a/include/acpi/actypes.h
+++ b/include/acpi/actypes.h
@@ -1244,4 +1244,13 @@ struct acpi_memory_list {
1244#define ACPI_OSI_WIN_7 0x0B 1244#define ACPI_OSI_WIN_7 0x0B
1245#define ACPI_OSI_WIN_8 0x0C 1245#define ACPI_OSI_WIN_8 0x0C
1246 1246
1247/* Definitions of file IO */
1248
1249#define ACPI_FILE_READING 0x01
1250#define ACPI_FILE_WRITING 0x02
1251#define ACPI_FILE_BINARY 0x04
1252
1253#define ACPI_FILE_BEGIN 0x01
1254#define ACPI_FILE_END 0x02
1255
1247#endif /* __ACTYPES_H__ */ 1256#endif /* __ACTYPES_H__ */
diff --git a/tools/power/acpi/os_specific/service_layers/oslibcfs.c b/tools/power/acpi/os_specific/service_layers/oslibcfs.c
new file mode 100644
index 000000000000..2da0ce885c8c
--- /dev/null
+++ b/tools/power/acpi/os_specific/service_layers/oslibcfs.c
@@ -0,0 +1,214 @@
1/******************************************************************************
2 *
3 * Module Name: oslibcfs - C library OSL for file IO
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2014, Intel Corp.
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
44#include <acpi/acpi.h>
45#include <stdio.h>
46#include <stdarg.h>
47
48#define _COMPONENT ACPI_OS_SERVICES
49ACPI_MODULE_NAME("oslibcfs")
50
51/*******************************************************************************
52 *
53 * FUNCTION: acpi_os_open_file
54 *
55 * PARAMETERS: path - File path
56 * modes - File operation type
57 *
58 * RETURN: File descriptor.
59 *
60 * DESCRIPTION: Open a file for reading (ACPI_FILE_READING) or/and writing
61 * (ACPI_FILE_WRITING).
62 *
63 ******************************************************************************/
64ACPI_FILE acpi_os_open_file(const char *path, u8 modes)
65{
66 ACPI_FILE file;
67 char modes_str[4];
68 u32 i = 0;
69
70 if (modes & ACPI_FILE_READING) {
71 modes_str[i++] = 'r';
72 }
73 if (modes & ACPI_FILE_WRITING) {
74 modes_str[i++] = 'w';
75 }
76 if (modes & ACPI_FILE_BINARY) {
77 modes_str[i++] = 'b';
78 }
79 modes_str[i++] = '\0';
80
81 file = fopen(path, modes_str);
82 if (!file) {
83 perror("Could not open file");
84 }
85
86 return (file);
87}
88
89/*******************************************************************************
90 *
91 * FUNCTION: acpi_os_close_file
92 *
93 * PARAMETERS: file - File descriptor
94 *
95 * RETURN: None.
96 *
97 * DESCRIPTION: Close a file.
98 *
99 ******************************************************************************/
100
101void acpi_os_close_file(ACPI_FILE file)
102{
103 fclose(file);
104}
105
106/*******************************************************************************
107 *
108 * FUNCTION: acpi_os_read_file
109 *
110 * PARAMETERS: file - File descriptor
111 * buffer - Data buffer
112 * size - Data block size
113 * count - Number of data blocks
114 *
115 * RETURN: Size of successfully read buffer.
116 *
117 * DESCRIPTION: Read a file.
118 *
119 ******************************************************************************/
120
121int
122acpi_os_read_file(ACPI_FILE file, void *buffer, acpi_size size, acpi_size count)
123{
124 int length;
125
126 length = fread(buffer, size, count, file);
127 if (length < 0) {
128 perror("Error reading file");
129 }
130
131 return (length);
132}
133
134/*******************************************************************************
135 *
136 * FUNCTION: acpi_os_write_file
137 *
138 * PARAMETERS: file - File descriptor
139 * buffer - Data buffer
140 * size - Data block size
141 * count - Number of data blocks
142 *
143 * RETURN: Size of successfully written buffer.
144 *
145 * DESCRIPTION: Write a file.
146 *
147 ******************************************************************************/
148
149int
150acpi_os_write_file(ACPI_FILE file,
151 void *buffer, acpi_size size, acpi_size count)
152{
153 int length;
154
155 length = fwrite(buffer, size, count, file);
156 if (length < 0) {
157 perror("Error writing file");
158 }
159
160 return (length);
161}
162
163/*******************************************************************************
164 *
165 * FUNCTION: acpi_os_get_file_offset
166 *
167 * PARAMETERS: file - File descriptor
168 *
169 * RETURN: Size of current position.
170 *
171 * DESCRIPTION: Get current file offset.
172 *
173 ******************************************************************************/
174
175long acpi_os_get_file_offset(ACPI_FILE file)
176{
177 long offset;
178
179 offset = ftell(file);
180
181 return (offset);
182}
183
184/*******************************************************************************
185 *
186 * FUNCTION: acpi_os_set_file_offset
187 *
188 * PARAMETERS: file - File descriptor
189 * offset - File offset
190 * from - From begin/end of file
191 *
192 * RETURN: Status
193 *
194 * DESCRIPTION: Set current file offset.
195 *
196 ******************************************************************************/
197
198acpi_status acpi_os_set_file_offset(ACPI_FILE file, long offset, u8 from)
199{
200 int ret = 0;
201
202 if (from == ACPI_FILE_BEGIN) {
203 ret = fseek(file, offset, SEEK_SET);
204 }
205 if (from == ACPI_FILE_END) {
206 ret = fseek(file, offset, SEEK_END);
207 }
208
209 if (ret < 0) {
210 return (AE_ERROR);
211 } else {
212 return (AE_OK);
213 }
214}