aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/via/epia/auto.c
blob: fe999b06083a7b24a98f66719a6d03c43d07fa3c (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
#define ASSEMBLY 1


#include <stdint.h>
#include <device/pci_def.h>
#include <cpu/p6/apic.h>
#include <arch/io.h>
#include <device/pnp.h>
#include <arch/romcc_io.h>
#include "pc80/serial.c"
#include "arch/i386/lib/console.c"
#include "ram/ramtest.c"
#include "northbridge/via/vt8601/raminit.h"
/*
 */
void udelay(int usecs) {
  int i;
  for(i = 0; i < usecs; i++)
    outb(i&0xff, 0x80);
}

#include "lib/delay.c"
#include "cpu/p6/boot_cpu.c"
#include "debug.c"

#include "southbridge/via/vt8231/vt8231_early_smbus.c"

#define MAXIMUM_CONSOLE_LOGLEVEL 9
#define DEFAULT_CONSOLE_LOGLEVEL 9

#include "southbridge/via/vt8231/vt8231_early_serial.c"
static void memreset_setup(void)
{
}

/*
static void memreset(int controllers, const struct mem_controller *ctrl)
{
}
*/
static inline int spd_read_byte(unsigned device, unsigned address)
{
	return smbus_read_byte(device, address);
}



#include "northbridge/via/vt8601/raminit.c"
/*
#include "sdram/generic_sdram.c"
 */

static void
enable_mainboard_devices(void) {
  device_t dev;
  /* dev 0 for southbridge */
  
  dev = pci_locate_device(PCI_ID(0x1106,0x8231), 0);
  
  if (dev == PCI_DEV_INVALID) {
    die("Southbridge not found!!!\n");
  }
  pci_write_config8(dev, 0x50, 7);
  pci_write_config8(dev, 0x51, 0xff);
}

static void
enable_shadow_ram(void) {
  device_t dev = 0; /* no need to look up 0:0.0 */
  unsigned char shadowreg;
  /* dev 0 for southbridge */
  shadowreg = pci_read_config8(dev, 0x63);
  /* 0xf0000-0xfffff */
  shadowreg |= 0x30;
  pci_write_config8(dev, 0x63, shadowreg);
}
static void main(void)
{
  unsigned long x;
  /*	init_timer();*/
  outb(5, 0x80);

	enable_vt8231_serial();
	enable_mainboard_devices();
	uart_init();
	console_init();
	
	enable_smbus();
	enable_shadow_ram();
	/*
	memreset_setup();
	 this is way more generic than we need.
	sdram_initialize(sizeof(cpu)/sizeof(cpu[0]), cpu);
	*/
	sdram_set_registers((const struct mem_controller *) 0);


	/* Check all of memory */
#if 0
	msr_t msr;
	msr = rdmsr(TOP_MEM);
	print_debug("TOP_MEM: ");
	print_debug_hex32(msr.hi);
	print_debug_hex32(msr.lo);
	print_debug("\r\n");
#endif
#if 0
	ram_check(0x00000000, msr.lo);
#endif
#if 0
	static const struct {
		unsigned long lo, hi;
	} check_addrs[] = {
		/* Check 16MB of memory @ 0*/
		{ 0x00000000, 0x01000000 },
#if TOTAL_CPUS > 1
		/* Check 16MB of memory @ 2GB */
		{ 0x80000000, 0x81000000 },
#endif
	};
	int i;
	for(i = 0; i < sizeof(check_addrs)/sizeof(check_addrs[0]); i++) {
		ram_check(check_addrs[i].lo, check_addrs[i].hi);
	}
#endif
}