summaryrefslogtreecommitdiff
path: root/com32/hdt/hdt-dump-memory.c
blob: 5095d3c27d68df808fc9f17c4a428782e9d4fcaa (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* ----------------------------------------------------------------------- *
 *
 *   Copyright 2011 Erwan Velu - All Rights Reserved
 *
 *   Permission is hereby granted, free of charge, to any person
 *   obtaining a copy of this software and associated documentation
 *   files (the "Software"), to deal in the Software without
 *   restriction, including without limitation the rights to use,
 *   copy, modify, merge, publish, distribute, sublicense, and/or
 *   sell copies of the Software, and to permit persons to whom
 *   the Software is furnished to do so, subject to the following
 *   conditions:
 *
 *   The above copyright notice and this permission notice shall
 *   be included in all copies or substantial portions of the Software.
 *
 *   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 *   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *   NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 *   HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 *   WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 *   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 *   OTHER DEALINGS IN THE SOFTWARE.
 *
 * -----------------------------------------------------------------------
 */

#include <memory.h>
#include "hdt-common.h"
#include "hdt-dump.h"

void dump_88(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item) {

	(void) hardware;
	int mem_size = 0;
	CREATE_NEW_OBJECT;
	if (detect_memory_88(&mem_size)) {
		add_s("memory.error","8800h memory configuration is invalid");
		FLUSH_OBJECT
		return;
	}

	add_s("dmi.item","memory via 88");
	add_i("memory.size (KiB)", mem_size);
	add_i("memory.size (MiB)", mem_size >> 10);
	FLUSH_OBJECT;
}

void dump_e801(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item) {

	(void) hardware;
	int mem_low, mem_high = 0;
	CREATE_NEW_OBJECT;
	if (detect_memory_e801(&mem_low,&mem_high)) {
		add_s("memory.error","e801 memory configuration is invalid");
		FLUSH_OBJECT;
		return;
	}

	add_s("dmi.item","memory via e801");
	add_i("memory.total.size (KiB)", mem_low + (mem_high << 6));
	add_i("memory.total.size (MiB)", (mem_low >> 10) + (mem_high >> 4));
	add_i("memory.low.size (KiB)", mem_low );
	add_i("memory.low.size (MiB)", mem_low >> 10);
	add_i("memory.high.size (KiB)", mem_high << 6);
	add_i("memory.high.size (MiB)", mem_high >> 4);
	FLUSH_OBJECT;

}
void dump_e820(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item) {
    
	(void) hardware;
	struct e820entry map[E820MAX];
	struct e820entry nm[E820MAX];
	unsigned long memsize = 0;
	int count = 0;
	char type[14] = {0};
	
	detect_memory_e820(map, E820MAX, &count);
 	memsize = memsize_e820(map, count);
	
	CREATE_NEW_OBJECT;
		add_s("dmi.item","memory via e820");
		add_i("memory.total.size (KiB)", memsize);
		add_i("memory.total.size (MiB)", (memsize + (1 << 9)) >> 10);
	FLUSH_OBJECT;

	for (int i = 0; i < count; i++) {
		get_type(map[i].type, type, sizeof(type));
		char begin[24]={0};
		char size[24]={0};
		char end[24]={0};
		snprintf(begin,sizeof(begin),"0x%016llx",map[i].addr);
		snprintf(size,sizeof(size),"0x%016llx",map[i].size);
		snprintf(end,sizeof(end),"0x%016llx",map[i].addr+map[i].size);
		CREATE_NEW_OBJECT;
			add_s("memory.segment.start",begin);
			add_s("memory.segment.size ",size);
			add_s("memory.segment.end  ",end);
			add_s("memory.segment.type ",remove_spaces(type));
		FLUSH_OBJECT;
	}

	int nr = sanitize_e820_map(map, nm, count);
	for (int i = 0; i < nr; i++) {
		get_type(nm[i].type, type, sizeof(type));
		char begin[24]={0};
		char size[24]={0};
		char end[24]={0};
		snprintf(begin,sizeof(begin),"0x%016llx",nm[i].addr);
		snprintf(size,sizeof(size),"0x%016llx",nm[i].size);
		snprintf(end,sizeof(end),"0x%016llx",nm[i].addr+nm[i].size);
		CREATE_NEW_OBJECT;
			add_s("sanitized_memory.segment.start",begin);
			add_s("sanitized_memory.segment.size ",size);
			add_s("sanitized_memory.segment.end  ",end);
			add_s("sanitized_memory.segment.type ",remove_spaces(type));
		FLUSH_OBJECT;
	}
}

void dump_memory(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item) {

	CREATE_NEW_OBJECT;
		add_s("Memory configuration","true");
	FLUSH_OBJECT;

	dump_88(hardware,config,item);
	dump_e801(hardware,config,item);
	dump_e820(hardware,config,item);
	to_cpio("memory");
}