xref: /openbmc/hiomapd/test/system.h (revision 9fc7923f62efd2678833450b7d6848db68f9e5f3)
1*9fc7923fSAndrew Jeffery /*
2*9fc7923fSAndrew Jeffery  * MBox Daemon Test File
3*9fc7923fSAndrew Jeffery  *
4*9fc7923fSAndrew Jeffery  * Copyright 2017 IBM
5*9fc7923fSAndrew Jeffery  *
6*9fc7923fSAndrew Jeffery  * Licensed under the Apache License, Version 2.0 (the "License");
7*9fc7923fSAndrew Jeffery  * you may not use this file except in compliance with the License.
8*9fc7923fSAndrew Jeffery  * You may obtain a copy of the License at
9*9fc7923fSAndrew Jeffery  *
10*9fc7923fSAndrew Jeffery  * http://www.apache.org/licenses/LICENSE-2.0
11*9fc7923fSAndrew Jeffery  *
12*9fc7923fSAndrew Jeffery  * Unless required by applicable law or agreed to in writing, software
13*9fc7923fSAndrew Jeffery  * distributed under the License is distributed on an "AS IS" BASIS,
14*9fc7923fSAndrew Jeffery  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15*9fc7923fSAndrew Jeffery  * See the License for the specific language governing permissions and
16*9fc7923fSAndrew Jeffery  * limitations under the License.
17*9fc7923fSAndrew Jeffery  *
18*9fc7923fSAndrew Jeffery  */
19*9fc7923fSAndrew Jeffery 
20*9fc7923fSAndrew Jeffery #ifndef TEST_SYSTEM_H
21*9fc7923fSAndrew Jeffery #define TEST_SYSTEM_H
22*9fc7923fSAndrew Jeffery 
23*9fc7923fSAndrew Jeffery #include <stdint.h>
24*9fc7923fSAndrew Jeffery 
25*9fc7923fSAndrew Jeffery void system_set_reserved_size(uint32_t size);
26*9fc7923fSAndrew Jeffery void system_set_mtd_sizes(uint32_t size, uint32_t erasesize);
27*9fc7923fSAndrew Jeffery 
28*9fc7923fSAndrew Jeffery #endif /* TEST_SYSTEM_H */
29