summaryrefslogtreecommitdiffstats
path: root/northbridge/via/cn700/apic.c
blob: 7fe72d84699e8bf24a88a6c423100bef384a7a29 (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
/*
 * This file is part of the coreboot project.
 *
 * Copyright (C) 2008 Corey Osgood <corey.osgood@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 */

#include <types.h>
#include <console.h>
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_ids.h>
#include <arch/x86/cpu.h>


static void cpu_bus_init(struct device *dev)
{
#warning "cpu_bus_init() empty, what should it do?"
	printk(BIOS_SPEW, ">> Entering northbridge.c: %s\n", __func__);
	printk(BIOS_SPEW, ">> Exiting northbridge.c: %s\n", __func__);
}

static void cpu_bus_noop(struct device *dev)
{
}

/** Operations for when the northbridge is running an APIC cluster. */
struct device_operations cn700_north_apic = {
	.id = {.type = DEVICE_ID_APIC_CLUSTER,
		{.apic_cluster = {.vendor = PCI_VENDOR_ID_VIA,
				       .device = PCI_DEVICE_ID_VIA_CN700_AGP}}},
	.constructor			= default_device_constructor,
	.phase3_scan			= 0,
	.phase4_read_resources		= cpu_bus_noop,
	.phase4_set_resources		= cpu_bus_noop,
	.phase5_enable_resources	= cpu_bus_noop,
	.phase6_init			= cpu_bus_init,
};