aboutsummaryrefslogtreecommitdiff
path: root/util/romcc/tests/linux_test13.c
blob: 9bc80eac7dbe69fb2010a06b4c0914ec7d70e2c0 (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
#include "linux_syscall.h"
#include "linux_console.h"

struct mem_controller {
	unsigned short channel0[4];
};

static unsigned int spd_detect_dimms(const struct mem_controller *ctrl)
{
        unsigned dimm_mask;
        int i;

	print_debug("1\n");
        dimm_mask = 0;
        for(i = 0; i < 4; i++) {
                int byte;
                unsigned device;

		print_debug("2\n");
                device = ctrl->channel0[i];
                if (device) {
			print_debug("3\n");
                        byte = ctrl->channel0[i] + 2;
                        if (byte == 7) {
                                dimm_mask |= (1 << i);
                        }
                }
		print_debug("4\n");
        }
	print_debug("5\n");
        return dimm_mask;
}


static void main(void)
{
        static const struct mem_controller cpu[] = {
                {
                        .channel0 = { (0xa<<3)|0, (0xa<<3)|2, 0, 0 },
                },
        };
	long dimm_mask;
	print_debug("A\n");
	dimm_mask = spd_detect_dimms(cpu);
	print_debug("B\n");
	_exit(0);
}