aboutsummaryrefslogtreecommitdiff
path: root/libflash/test/stubs.c
blob: e09c8f5735dceee0c6289300c146a43f6cf50a56 (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
/* Copyright 2013-2017 IBM Corp.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * 	http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* Stubs for libflash test */
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <stdarg.h>
#include <sys/unistd.h> /* for usleep */

#include "../../include/lpc-mbox.h"
#include "stubs.h"

#define __unused          __attribute__((unused))

__attribute__((weak)) void check_timers(bool __unused unused)
{
	return;
}

void time_wait_ms(unsigned long ms)
{
	usleep(ms * 1000);
}

/* skiboot stubs */
unsigned long mftb(void)
{
	return 42;
}
unsigned long tb_hz = 512000000ul;

void _prlog(int __unused log_level, const char* fmt, ...)
{
	va_list ap;

	va_start(ap, fmt);
	vprintf(fmt, ap);
	va_end(ap);
}

/* accessor junk */

void bmc_put_u16(struct bmc_mbox_msg *msg, int offset, uint16_t data)
{
	msg->args[offset + 0] = data & 0xff;
	msg->args[offset + 1] = data >> 8;
}

void bmc_put_u32(struct bmc_mbox_msg *msg, int offset, uint32_t data)
{
	msg->args[offset + 0] = (data)       & 0xff;
	msg->args[offset + 1] = (data >>  8) & 0xff;
	msg->args[offset + 2] = (data >> 16) & 0xff;
	msg->args[offset + 3] = (data >> 24) & 0xff;
}

u32 bmc_get_u32(struct bmc_mbox_msg *msg, int offset)
{
	u32 data = 0;

	data |= msg->args[offset + 0];
	data |= msg->args[offset + 1] << 8;
	data |= msg->args[offset + 2] << 16;
	data |= msg->args[offset + 3] << 24;

	return data;
}

u16 bmc_get_u16(struct bmc_mbox_msg *msg, int offset)
{
	u16 data = 0;

	data |= msg->args[offset + 0];
	data |= msg->args[offset + 1] << 8;

	return data;
}